In my gauge I want to have different label for one value "0". So the labels on scale should look like:
-3 -2 -1 MY_LABEL 1 2 3
Could you tell me how can I do this?
Hello PoKrec,
Which kind of gauge are you using?
Hi Dave,
I am using RadialGauge
It's actually quite simple to do what you want. Just handle the RenderLabel event of the UltraGauge, and check the e.Text property in that event handler for a value of "0". When that property turns out to have that value, just change the e.Text property to whatever you want rendered.
Thank you :)