This question is locked. New answers and comments are not allowed.
I am using the trial version 2012.3.1204.0 for the RadControls for Windows 8 and I ran into 2 problems listed below:
1) When trying to implement a full circle gauge using an ArrowGaugeIndicator to point to the current value the animation works very well, however, when the indicator is at 0 and the value is set to 355 the arrow animates clockwise to the end value (355), taking the very long way to get there. I would like the ability to have the indicator move counter-clockwise in this scenario to reach the final value the quickest. Is there a way to achieve this?
2) The start and end labels (0 and 360, respectively) overlap making it difficult to read them. I have seen a couple of properties in your other control sets titled "ShowFirstLabel" and "ShowLastLabel" that would solve this issue. Any plans to bring something like that over to this control?
Both of these problems arise from the following code:
1) When trying to implement a full circle gauge using an ArrowGaugeIndicator to point to the current value the animation works very well, however, when the indicator is at 0 and the value is set to 355 the arrow animates clockwise to the end value (355), taking the very long way to get there. I would like the ability to have the indicator move counter-clockwise in this scenario to reach the final value the quickest. Is there a way to achieve this?
2) The start and end labels (0 and 360, respectively) overlap making it difficult to read them. I have seen a couple of properties in your other control sets titled "ShowFirstLabel" and "ShowLastLabel" that would solve this issue. Any plans to bring something like that over to this control?
Both of these problems arise from the following code:
<telerik:RadRadialGauge Height="300" DataContext="{Binding blah}" LabelStep="30" MaxValue="360" MaxAngle="450" MinAngle="90" MinValue="0" TickStep="10" LabelRadiusScale="1.1"> <telerik:ArrowGaugeIndicator Brush="White" IsAnimated="True" telerik:RadRadialGauge.IndicatorRadiusScale="0.83" Thickness="12" Value="{Binding someVal}" /></telerik:RadRadialGauge>