This is a migrated thread and some comments may be shown as answers.

How to change the order of the radial scale in a quartercircleNEstyle scale

1 Answer 23 Views
Gauge
This is a migrated thread and some comments may be shown as answers.
Scott
Top achievements
Rank 1
Scott asked on 02 Mar 2011, 05:17 PM
Hello,

I am using the following:

<

 

 

telerik:RadialScale x:Name="radialScale" Min="1" Max="25" Style="{StaticResource RadialScaleQuarterCircleNEStyle}">

 


It starts the scale at the bottom of the box and works its way to the top...How do I reverse this order?  I want the 1 value at the top of the box and the 25 value at the bottom of the box...

Thanks,
Scott

1 Answer, 1 is accepted

Sort by
0
Andrey
Telerik team
answered on 04 Mar 2011, 03:53 PM
Hello Scott,

You should set IsReversed property of the RadialScale to "False":

Copy Code
<telerik:RadGauge Name="radGaugeSE">
    <telerik:RadialGauge Style="{StaticResource RadialGaugeQuarterCircleNEStyle}">
        <telerik:RadialScale Min="1" Max="25"
                 IsReversed="False"
                 Style="{StaticResource RadialScaleQuarterCircleNEStyle}">
            <telerik:IndicatorList>
                <telerik:Needle Name="needleNE" Value="20"/>
            </telerik:IndicatorList>
        </telerik:RadialScale>
    </telerik:RadialGauge>
</telerik:RadGauge>


Kind regards,
Andrey Murzov
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
Tags
Gauge
Asked by
Scott
Top achievements
Rank 1
Answers by
Andrey
Telerik team
Share this question
or