I'm using the LinearGauge with orientation set to "Horizontal". I'm getting strange results with being able to see the labels in the scale ... they don't show up?? I got them to show once (and only once) by setting the Width and Height to a fixed size (20), but as soon as I change the font they disappear?? And now I can't seem to get them back ... XAML is below. Any suggestions?
<telerik:RadGauge Margin="0,2" Grid.Column="5" Grid.RowSpan="2" Grid.ColumnSpan="2">
<telerik:LinearGauge RenderTransformOrigin="0.5,0.5" OuterBorderThickness="0" BorderThickness="1" BorderBrush="Black" OuterBackground="{x:Null}" OuterBorderBrush="{x:Null}">
<telerik:LinearScale Margin="35,10" Orientation="Horizontal" RelativeHeight="1" StartWidth="1" EndWidth="1" Left="0" Min="0" Max="100" Top="0.09">
<telerik:LinearScale.MajorTick>
<telerik:MajorTickProperties Location="OverCenter" />
</telerik:LinearScale.MajorTick>
<telerik:LinearScale.MiddleTick>
<telerik:MiddleTickProperties Location="OverCenter" Length="0.07"/>
</telerik:LinearScale.MiddleTick>
<telerik:LinearScale.MinorTick>
<telerik:MinorTickProperties Location="OverCenter" Length="0.055"/>
</telerik:LinearScale.MinorTick>
<telerik:LinearScale.Label>
<telerik:LabelProperties Offset="1" Location="OverCenter" Margin="0" Foreground="#FF1A1B1B" Width="20" Height="20"/>
</telerik:LinearScale.Label>
<telerik:RangeList>
<telerik:LinearRange Min="0" Max="50" StartWidth="0.09" EndWidth="0.09" Location="OverCenter" Background="{StaticResource red}" BorderBrush="#7FFFFFFF" />
<telerik:LinearRange Min="50" Max="75" StartWidth="0.09" EndWidth="0.09" Location="OverCenter" Background="{StaticResource yellow}" BorderBrush="#7FFFFFFF" />
<telerik:LinearRange Min="75" Max="100" StartWidth="0.09" EndWidth="0.09" Location="OverCenter" Background="{StaticResource green}" BorderBrush="#7FFFFFFF" />
</telerik:RangeList>
<telerik:IndicatorList>
<telerik:Marker RelativeWidth="0.06" RelativeHeight="0.09" Height="25" IsAnimated="True" Location="OverCenter" >
</telerik:Marker>
</telerik:IndicatorList>
</telerik:LinearScale>
</telerik:LinearGauge>
</telerik:RadGauge>