This question is locked. New answers and comments are not allowed.
I have the following markup but I cannot seem to be able to get the Template correct for displaying the current value of my "averageIndicator" inside the "stateIndicator". I would like the state indicator to stay the same (the circular-looking shape) but just have some text inside of it. Is this possible?
| <telerikGauges:IndicatorList x:Name="indicators"> |
| <telerikGauges:Marker x:Name="averageIndicator" |
| Style="{StaticResource LinearMarkerStyle}" |
| Duration="00:00:02" |
| IsAnimated="True" |
| Opacity="0.8" |
| TooltipFormat="{0:0.##}" |
| Value="80" |
| /> |
| <telerikGauges:StateIndicator x:Name="stateIndicator" |
| Left="0.15" |
| Top="0.07" |
| Opacity="0.6" |
| RelativeWidth="0.1" |
| RelativeHeight="0.1" |
| Value="{Binding ElementName=averageIndicator, Path=Value}"> |
| </telerikGauges:StateIndicator> |
| </telerikGauges:IndicatorList> |