Hi,
On the Y Axis I am displaying percentage value.So I want to Set Y axis value 0 to 100 only. Is it possible at design time?
You can try to use:
this.ultraChart1.Axis.Y.RangeMin = 0;
this.ultraChart1.Axis.Y.RangeMax = 100;
Thanks Teodor Tauchanov