Page 1 of 1

Automatic axis minimum, but custom maximum

Posted: Fri Oct 10, 2008 8:17 am
by 13050248
Is it possible to keep the axis minimum calculated automatically, but set the maximum to a custom value? I've had some issues with the polar series and to solve it I had to set both the minimum and maximum to get the desired effect.

I'm only showing the right axis and therefore set the minimum/maximum on that axis, but that didn't work. Now I'm setting minimum/maximum on the left axis, but only showing the right axis.

Posted: Fri Oct 10, 2008 9:09 am
by narcis
Hi Christo,

Yes, you can use something like this:

Code: Select all

			tChart1.Axes.Bottom.AutomaticMaximum = true;
			tChart1.Axes.Bottom.AutomaticMinimum = false;
			tChart1.Axes.Bottom.Minimum = -5;