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

Gauge inside another gauge.

1 Answer 45 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:46 AM
Hi,

I want to create a radial gauge with gauge inside gauge. There is a big outer radial gauge and there are two small radial gauge and I want to place these two gauges horizontally inside the big radial gauge around its center. I was trying but cant get the desired placement of controls. Can someone offer help?

Thankyou
Katya

1 Answer, 1 is accepted

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

As a work around please try the following CSS to place two RadRadialGauge inside another RadRadialGauge.

ASPX:
<telerik:RadRadialGauge ID="RadRadialGauge1" runat="server" Height="350px" Width="350px">
</telerik:RadRadialGauge>
<telerik:RadRadialGauge ID="RadRadialGauge2" runat="server" Height="120px" Width="120px">
</telerik:RadRadialGauge>
<telerik:RadRadialGauge ID="RadRadialGauge3" runat="server" Height="120px" Width="120px">
</telerik:RadRadialGauge>

CSS:
<style type="text/css">
    #RadRadialGauge2
    {
        margin-left: 50px !important;
        margin-top: -220px !important;
    }
    #RadRadialGauge3
    {
        margin-left: 180px !important;
        margin-top: -110px !important;
    }
</style>

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