I would like to know how to set the number of ticks(angles) for circular gauges?
Thanks
How to set number of ticks for circular gauges
Re: How to set number of ticks for circular gauges
Hello iEnergy,
You need use property increment of axes as do in next line of code:
I hope will helps.
Thanks,
You need use property increment of axes as do in next line of code:
Code: Select all
series0.Chart.Axes.Left.Increment = 5;
I hope will helps.
Thanks,
Re: How to set number of ticks for circular gauges
Thanks Sandra!