Page 1 of 1

Auto Max Min

Posted: Thu Apr 22, 2010 8:47 pm
by 10548769
Hi,

I would like to know if there is a some global variable i could change for the Max/Min Automatic value for the Axis. I need a lil gap between my Max valule and the auto max value so that way i could see better the value on the graph. I know i could have done it manually, but you guys seems to have though of everything so... its worth a try ;)

thanks again.

Re: Auto Max Min

Posted: Fri Apr 23, 2010 7:40 am
by yeray
Hi GoToXY,

It seems you could be looking for MinimumOffset and MaximumOffset, isn't it?

Code: Select all

  Chart1.Axes.Left.MinimumOffset:=20;
  Chart1.Axes.Left.MaximumOffset:=20;

Re: Auto Max Min

Posted: Tue Apr 27, 2010 5:26 pm
by 10548769
heheh again Yeray you are the best. Thanks this is exactly what i was looking for. And on top of that, that value is in pixel so i dont have to convert anything to keep a regular offset for my Y axes.

Thanks a lot.