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

Full circle radial gauge

1 Answer 51 Views
Gauge
This is a migrated thread and some comments may be shown as answers.
Katya
Top achievements
Rank 1
Katya asked on 05 Nov 2013, 01:38 AM
Hi,

How can I create a radial gauge with its scale displayed as a full circle? Please see the attached pic to get a clear understanding.

Thankyou
Katya

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 05 Nov 2013, 04:40 AM
Hi Katya,

You can set the StartAngle and EndAngle of the scale to achieve your requirement.

ASPX:
<telerik:RadRadialGauge runat="server" ID="RadRadialGauge1" Height="350px" Width="350px">
    <Pointer Value="118" Color="OrangeRed">
        <Cap Color="Black" Size="0.1" />
    </Pointer>
    <Scale Min="0" Max="120" MajorUnit="30" MinorUnit="5" StartAngle="-90" EndAngle="270">
        <Labels Format="{0} Kmph" Position="Outside" />
        <Ranges>
            <telerik:GaugeRange Color="#7FFFFE" From="40" To="80" />
            <telerik:GaugeRange Color="#008083" From="80" To="120" />
        </Ranges>
    </Scale>
</telerik:RadRadialGauge>

Thanks,
Shinu.
Tags
Gauge
Asked by
Katya
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or