This question is locked. New answers and comments are not allowed.
Hi all,
I am new to silverlight controls and I need some help plz.
I have an Indicator list and over each indicator I want to display a text (title) saying what this indicator shows.
My code is below
Thank you for your help.
I am new to silverlight controls and I need some help plz.
I have an Indicator list and over each indicator I want to display a text (title) saying what this indicator shows.
My code is below
| <control:RadGauge Width="250" Height="300" x:Name="radGauge" Grid.Row="1" > |
| <gauge:NumericScale x:Name="scale" Max="255"> |
| <gauge:IndicatorList> |
| <gauge:NumericIndicator x:Name="numericIndicator" Format="{}{0:F2}" |
| Foreground="OrangeRed" Left="0.125" Top="0.01" RelativeWidth="0.6" |
| RelativeHeight="0.2"> |
| <gauge:NumericIndicator.Background> |
| <LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1"> |
| <GradientStop Offset="0" Color="Blue" /> |
| <GradientStop Offset="0.5" Color="SkyBlue" /> |
| <GradientStop Offset="1" Color="Blue" /> |
| </LinearGradientBrush> |
| </gauge:NumericIndicator.Background> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" |
| Background="#9F00FF7F" Foreground="Black" RelativeWidth="0.5" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| </gauge:NumericIndicator> |
| <gauge:NumericIndicator x:Name="numericIndicator2" Format="{}{0:F2}" |
| Foreground="OrangeRed" Left="0.125" Top="0.25" RelativeWidth="0.6" |
| RelativeHeight="0.2"> |
| <gauge:NumericIndicator.Background> |
| <LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1"> |
| <GradientStop Offset="0" Color="Blue" /> |
| <GradientStop Offset="0.5" Color="SkyBlue" /> |
| <GradientStop Offset="1" Color="Blue" /> |
| </LinearGradientBrush> |
| </gauge:NumericIndicator.Background> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" |
| Background="#9F00FF7F" Foreground="Black" RelativeWidth="0.5" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| </gauge:NumericIndicator> |
| <gauge:NumericIndicator x:Name="numericIndicator3" Format="{}{0:F2}" |
| Foreground="OrangeRed" Left="0.125" Top="0.5" RelativeWidth="0.6" |
| RelativeHeight="0.2"> |
| <gauge:NumericIndicator.Background> |
| <LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1"> |
| <GradientStop Offset="0" Color="Blue" /> |
| <GradientStop Offset="0.5" Color="SkyBlue" /> |
| <GradientStop Offset="1" Color="Blue" /> |
| </LinearGradientBrush> |
| </gauge:NumericIndicator.Background> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" |
| Background="#9F00FF7F" Foreground="Black" RelativeWidth="0.5" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| <gauge:NumberPosition FontSize="56" BorderThickness="1" Foreground="Black" |
| Background="#9F00FF7F" /> |
| </gauge:NumericIndicator> |
| </gauge:IndicatorList> |
| </gauge:NumericScale> |
| </control:RadGauge> |