New to Telerik UI for WPF? Download free 30-day trial

Labels

Tick labels are shown for the major tick marks. You can set the label location around the scale bar, the font properties (like family, size and foreground), the format of the label, or even change the whole control template for a label. To change the location of the tick mark label you should use the LabelLocation property of the scale element in XAML as shown below:

<telerik:RadHorizontalLinearGauge Grid.Column="0" Width="250" Height="100" telerik:StyleManager.Theme="Windows8"> 
    <telerik:HorizontalLinearScale Min="0" Max="100" /> 
</telerik:RadHorizontalLinearGauge> 
<telerik:RadHorizontalLinearGauge Grid.Column="1" Width="250" Height="100" > 
    <telerik:HorizontalLinearScale Min="0" Max="100" LabelLocation="OverOutside" /> 
</telerik:RadHorizontalLinearGauge> 

You can use the GaugeRange element to set specific color to your labels. The LinearScale element has the boolean LabelUseRangeColor property. If its value is True, then each label within the range uses a color according to the specified LabelForeground property:

<telerik:RadHorizontalLinearGauge Width="250" Height="100" telerik:StyleManager.Theme="Windows8"> 
    <telerik:HorizontalLinearScale Min="0" Max="100"  
                         RangeLocation="OverOutside" 
                         LabelUseRangeColor="True"> 
        <telerik:HorizontalLinearScale.Ranges>  
                <telerik:GaugeRange Min="50" Max="100" 
                                    StartWidth="0" 
                                    EndWidth="0.08" 
                                    Background="#FF25A0DA" 
                                    LabelForeground="#FF25A0DA" /> 
        </telerik:HorizontalLinearScale.Ranges> 
    </telerik:HorizontalLinearScale> 
</telerik:RadHorizontalLinearGauge> 

WPF RadGauge HorizontalLinearScale with LabelUseRangeColor

In this article