Hi,
am using the Radial scale interactivity control for strength match on text.When I use the below to display the numbers around the scale its not displaying in design mode of XAML.Like the numbers around the scale (0,10,20,30--100).Infact I cannot see any numbers.
Below is the code I have been using
<Grid x:Name="LayoutRoot" Background="White">
<control:RadGauge x:Name="radGauge" Width="240" Height="240">
<gauge:RadialGauge>
<gauge:RadialScale x:Name="radialScale">
<gauge:RadialScale.MajorTick>
<gauge:MajorTickProperties Length="0.1" />
</gauge:RadialScale.MajorTick>
<gauge:RadialScale.MiddleTick>
<gauge:MiddleTickProperties Length="0.07" />
</gauge:RadialScale.MiddleTick>
<gauge:RadialScale.MinorTick>
<gauge:MinorTickProperties Length="0.05" />
</gauge:RadialScale.MinorTick>
<gauge:RadialScale.Label>
<gauge:LabelProperties Location="Inside" FontSize="15" />
</gauge:RadialScale.Label>
<gauge:IndicatorList>
<gauge:RadialBar x:Name="bar" Value="50" FontStretch="Normal" Foreground="Red" />
<gauge:Marker x:Name="marker" Location="OverCenter" Value="85" IsAnimated="True" BorderThickness="1" Opacity="10" />
<gauge:Needle x:Name="needle" IsAnimated="true"
ValueChanged="IndicatorValueChanged" />
</gauge:IndicatorList>
</gauge:RadialScale>
</gauge:RadialGauge>
</control:RadGauge>
</Grid>
am using the Radial scale interactivity control for strength match on text.When I use the below to display the numbers around the scale its not displaying in design mode of XAML.Like the numbers around the scale (0,10,20,30--100).Infact I cannot see any numbers.
Below is the code I have been using
<Grid x:Name="LayoutRoot" Background="White">
<control:RadGauge x:Name="radGauge" Width="240" Height="240">
<gauge:RadialGauge>
<gauge:RadialScale x:Name="radialScale">
<gauge:RadialScale.MajorTick>
<gauge:MajorTickProperties Length="0.1" />
</gauge:RadialScale.MajorTick>
<gauge:RadialScale.MiddleTick>
<gauge:MiddleTickProperties Length="0.07" />
</gauge:RadialScale.MiddleTick>
<gauge:RadialScale.MinorTick>
<gauge:MinorTickProperties Length="0.05" />
</gauge:RadialScale.MinorTick>
<gauge:RadialScale.Label>
<gauge:LabelProperties Location="Inside" FontSize="15" />
</gauge:RadialScale.Label>
<gauge:IndicatorList>
<gauge:RadialBar x:Name="bar" Value="50" FontStretch="Normal" Foreground="Red" />
<gauge:Marker x:Name="marker" Location="OverCenter" Value="85" IsAnimated="True" BorderThickness="1" Opacity="10" />
<gauge:Needle x:Name="needle" IsAnimated="true"
ValueChanged="IndicatorValueChanged" />
</gauge:IndicatorList>
</gauge:RadialScale>
</gauge:RadialGauge>
</control:RadGauge>
</Grid>