Hi support,i have one question if my scenario is possible with the gauge control.I want a gauge with a fix 0 point . So I can show negative and positive values.Somethink like this:
Is this possible?Regards Steffen
Hi Steffen,
This is definitely possible. You will need to set the Start and End values for the LinearGaugeScale on the control. Here is some XAML to do this.
<ig:XamLinearGauge> <ig:XamLinearGauge.Scales> <ig:LinearGaugeScale StartValue="-5" EndValue="10"> <ig:LinearGaugeScale.Needles> <ig:LinearGaugeNeedle Value="0" /> </ig:LinearGaugeScale.Needles> </ig:LinearGaugeScale> </ig:XamLinearGauge.Scales></ig:XamLinearGauge>
Let me know if you have any questions on this.
Let me know if you have any further questions on this matter.