Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
330
Label format for the scale of the WebRadial guage
posted

Hi!

I have a rqeuirement where I have to show the label markings for all the points in the scale like, the minimum value will start form zero and maximum value is 100 and the unit interval is 20. Apart from this I also need to show tha markings in between two markings like between 0 to 20 also. Please let me know the code for this.

Thanks and regards,

Usha.

 

  • 28496
    Suggested Answer
    Offline posted

    <igGauge:XamWebRadialGauge>
                <igGauge:XamWebRadialGauge.Scales>
                    <igGauge:RadialGaugeScale StartValue="0" EndValue="100">
                        <igGauge:RadialGaugeScale.LabelGroups>
                            <igGauge:RadialGaugeLabelGroup Interval="20" />
                            <igGauge:RadialGaugeLabelGroup PreTerminal="80" Interval="1" />
                        </igGauge:RadialGaugeScale.LabelGroups>
                    </igGauge:RadialGaugeScale>
                </igGauge:XamWebRadialGauge.Scales>
            </igGauge:XamWebRadialGauge>