We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

How to add Multi Scale

Hi,

I want to display a range -999 to 999 on a radial gauge. As the range is too high I am not able to  display it properly. So as an option I found this https://www.syncfusion.com/products/wpf/radial-gauge
my question is that can I give 3 different ranges on different scales? and how? 

4 Replies

GP Gaurang Pandya June 28, 2016 04:41 AM UTC

Hi,

I have tried using following code, but somehow it is not working...

 private void radialGauge3_ValueChanged(object sender, EventArgs e)
        {
            //double StartValue = -999;
            //double EndValue = 999;


            if (integerTextBox1.IntegerValue > radialGauge1.MinimumValue)
            {

                radialGauge1.Ranges(0).StartValue = integerTextBox1.IntegerValue;

            }
            else
            {
                return;
            }

            if (integerTextBox1.IntegerValue < radialGauge1.MaximumValue)
            {
                radialGauge1.Ranges(0).EndValue = integerTextBox1.IntegerValue;
            }
            else
            {
                return;
            }
        }


KJ Keerthana Jegannathan Syncfusion Team June 28, 2016 09:47 AM UTC

Hi Gaurang, 
 
Thank you for contacting Syncfusion support. 
 
At present, RadialGauge doesn’t have Multi Scaling support to display large ranges. We have logged the feature report for the requirement. This feature will be included in any of our upcoming release. 
 
Regards, 
 
Keerthana 



GP Gaurang Pandya June 29, 2016 04:47 AM UTC

Hi Keerthana,

Thanks for your quick reply.

So is there any other way to display such large scale?


KJ Keerthana Jegannathan Syncfusion Team June 30, 2016 12:52 PM UTC

Hi Gaurang, 
 
Thank you for your update. 
 
At present, there is no other option for displaying large scale values in RadialGauge. 
 
Regards, 
 
Keerthana 


Loader.
Live Chat Icon For mobile
Up arrow icon