Numeric Scale Overview
The NumericScale is a container to display numeric and/or state indicator when no other scales (radial or linear) are necessary.
The Numeric Scale is part of Telerik UI for WPF, a
professional grade UI library with 160+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.
To add a numeric scale to any container (including RadialGauge and LinearGauge containers) you have to include NumericScale element as child to the contained element. Then you can put NumericIndicator and/or StateIndicator to the list of the numeric scale indicators:
<telerik:RadVerticalLinearGauge Width="150" Height="50" telerik:StyleManager.Theme="Windows8">
<telerik:NumericScale Min="0">
<telerik:NumericScale.Indicators>
<telerik:NumericIndicator Name="numericIndicator" Value="543.216"
Format="{}{0:F2}"
Foreground="#FF1E8D00"
telerik:ScaleObject.RelativeX="0"
telerik:ScaleObject.RelativeY="0"
telerik:ScaleObject.RelativeWidth="1*"
telerik:ScaleObject.RelativeHeight="1*">
<telerik:NumericIndicator.Positions>
<telerik:HexagonalNumberPosition />
<telerik:HexagonalNumberPosition />
<telerik:HexagonalNumberPosition />
<telerik:HexagonalNumberPosition />
<telerik:HexagonalNumberPosition />
<telerik:HexagonalNumberPosition />
</telerik:NumericIndicator.Positions>
</telerik:NumericIndicator>
</telerik:NumericScale.Indicators>
</telerik:NumericScale>
</telerik:RadVerticalLinearGauge>