diff --git a/Images/circular-gauge-as-knob.jpg b/Images/circular-gauge-as-knob.jpg
new file mode 100644
index 0000000..d96c6bb
Binary files /dev/null and b/Images/circular-gauge-as-knob.jpg differ
diff --git a/Readme.md b/Readme.md
index bd4414b..eeb0c67 100644
--- a/Readme.md
+++ b/Readme.md
@@ -1,38 +1,99 @@
-
-
-[](https://supportcenter.devexpress.com/ticket/details/E3335)
-[](https://docs.devexpress.com/GeneralInformation/403183)
-[](#does-this-example-address-your-development-requirementsobjectives)
-
-
-# WPF Gauges - Create a volume knob
-
-This example customizes the [CircularGaugeControl](https://docs.devexpress.com/WPF/DevExpress.Xpf.Gauges.CircularGaugeControl). As a result, the control looks and behaves like a 'knob' element of a real-life dashboard.
-
-
-
-## Implementation Details
-
-The **KnobResourceDictionary.xaml** file contains the following custom templates:
-
-* The **OscilloscopeNeedleTemplate** changes the arc scale's [needle](https://docs.devexpress.com/WPF/9957/controls-and-libraries/gauge-controls/visual-elements/circular-gauge/needle) appearance.
-* The **OscilloscopeScaleLayerTemplate** changes the arc scale's [layer](https://docs.devexpress.com/WPF/9962/controls-and-libraries/gauge-controls/visual-elements/circular-gauge/layers) appearance.
-
-Set the needle's [IsInteractive](https://docs.devexpress.com/WPF/DevExpress.Xpf.Gauges.ValueIndicatorBase.IsInteractive) property to `true` to allow users to change the gauge's value. The gauge stores its value in the needle's `Value` property.
-
-## Files to Review
-
-* [KnobResourceDictionary.xaml](./CS/DXGauges_Knobs/KnobResourceDictionary.xaml) (VB: [KnobResourceDictionary.xaml](./VB/DXGauges_Knobs/KnobResourceDictionary.xaml))
-* [MainWindow.xaml](./CS/DXGauges_Knobs/MainWindow.xaml) (VB: [MainWindow.xaml](./VB/DXGauges_Knobs/MainWindow.xaml))
-
-## Documentation
-
-* [CircularGaugeControl](https://docs.devexpress.com/WPF/DevExpress.Xpf.Gauges.CircularGaugeControl)
-* [Circular Gauge Elements](https://docs.devexpress.com/WPF/9954/controls-and-libraries/gauge-controls/visual-elements/circular-gauge)
-
+
+
+[](https://supportcenter.devexpress.com/ticket/details/E3335)
+[](https://docs.devexpress.com/GeneralInformation/403183)
+[](#does-this-example-address-your-development-requirementsobjectives)
+
+
+# WPF Gauges β Create a Volume Knob
+
+This example changes the [`CircularGaugeControl`](https://docs.devexpress.com/WPF/DevExpress.Xpf.Gauges.CircularGaugeControl) so that it looks and behaves like a volume knob. Turn the gauge needle to update the percentage label under the control.
+
+
+
+Use the `CircularGaugeControl` when you need to:
+
+* Create an interactive rotary control to adjust a value.
+* Imitate analog controls in dashboards, audio mixers, or monitoring panels.
+* Apply a custom design to match a specific UI theme.
+
+## Implementation Details
+
+### Custom Needle and Scale Templates
+
+Define custom templates in the [KnobResourceDictionary.xaml](./CS/DXGauges_Knobs/KnobResourceDictionary.xaml) file:
+
+* `OscilloscopeNeedleTemplate` β changes the needle shape and color.
+* `OscilloscopeScaleLayerTemplate` β changes the gauge background and decorative elements.
+
+The following code example applies templates through [`CustomArcScaleNeedlePresentation`](https://docs.devexpress.com/WPF/DevExpress.Xpf.Gauges.CustomArcScaleNeedlePresentation) and [`CustomArcScaleLayerPresentation`](https://docs.devexpress.com/WPF/DevExpress.Xpf.Gauges.CustomArcScaleLayerPresentation) properties:
+
+```xaml
+
+
+
+...
+
+
+
+```
+
+### Gauge Configuration
+
+The circular gauge has the following features:
+
+* Starts at `0` and ends at `100`.
+* Uses a custom start/end angle to simulate knob rotation.
+* Hides numeric labels and displays only tick marks.
+* Supports interactive needle movement.
+
+```xaml
+
+```
+
+Use the `SmartTickmarksPresentation` property to change the tick mark style and position tick marks with negative offsets to align with the custom scale.
+
+### Value Display
+
+A `Label` displays the gauge value. Its content is bound to the needleβs `Value` property:
+
+```xaml
+
+```
+
+The label updates automatically when the knob is rotated.
+
+## Files to Review
+
+* [KnobResourceDictionary.xaml](./CS/DXGauges_Knobs/KnobResourceDictionary.xaml) (VB: [KnobResourceDictionary.xaml](./VB/DXGauges_Knobs/KnobResourceDictionary.xaml))
+* [MainWindow.xaml](./CS/DXGauges_Knobs/MainWindow.xaml) (VB: [MainWindow.xaml](./VB/DXGauges_Knobs/MainWindow.xaml))
+
+## Documentation
+
+* [CircularGaugeControl](https://docs.devexpress.com/WPF/DevExpress.Xpf.Gauges.CircularGaugeControl)
+* [Circular Gauge Elements](https://docs.devexpress.com/WPF/9954/controls-and-libraries/gauge-controls/visual-elements/circular-gauge)
+* [CustomArcScaleLayerPresentation](https://docs.devexpress.com/WPF/DevExpress.Xpf.Gauges.CustomArcScaleLayerPresentation)
+* [CustomArcScaleNeedlePresentation](https://docs.devexpress.com/WPF/DevExpress.Xpf.Gauges.CustomArcScaleNeedlePresentation)
+* [Gauge Controls](https://docs.devexpress.com/WPF/115093/controls-and-libraries/gauge-controls)
+
+## More Examples
+
+* [WPF Linear Gauge β Display Custom UI Elements](https://github.com/DevExpress-Examples/wpf-linear-gauge-display-custom-ui-elements)
+* [WPF Gauges Getting Started β Lesson 3 β Create a Digital Gauge](https://github.com/DevExpress-Examples/wpf-gauges-getting-started-create-digital-gauge)
+* [WPF Gauges β Set Width and Height of Symbols in Digital Gauge](https://github.com/DevExpress-Examples/wpf-gauges-set-width-and-height-of-symbols-in-digital-gauge-control)
+* [WPF Gauge β Create a Digital Gauge](https://github.com/DevExpress-Examples/wpf-create-digital-gauge)
+* [Reporting for WPF β Advanced Gauge Customization](https://github.com/DevExpress-Examples/reporting-wpf-advanced-gauge-customization)
+
+
## Does this example address your development requirements/objectives?
[](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=wpf-gauges-create-volume-knob&~~~was_helpful=yes) [](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=wpf-gauges-create-volume-knob&~~~was_helpful=no)
-(you will be redirected to DevExpress.com to submit your response)
-
+(you will be redirected to DevExpress.com to submit your response)
+
diff --git a/media/b5aca44e-e490-11e6-80bf-00155d62480c.png b/media/b5aca44e-e490-11e6-80bf-00155d62480c.png
deleted file mode 100644
index 9da42bd..0000000
Binary files a/media/b5aca44e-e490-11e6-80bf-00155d62480c.png and /dev/null differ