Page 1 of 1

3D chart reverse bottom axis?

Posted: Tue Oct 14, 2008 2:40 pm
by 9239148
Hi Support,

I'm displaying data on a 3D chart like so:

Image

The bottom axis, Phase deg, displays data from 360 -> 0.

Is there any way to format this axis so that it displays the labels, and data, in reverse order? I.e. from 0 -> 360 instead? I tried swapping the values of minimum and maximum, but it does not appear to be possible to have a max value lower than the min value.

Posted: Tue Oct 14, 2008 2:45 pm
by narcis
Hi Monkey,

Yes, you can try using this:

Code: Select all

  Chart1.Axes.Bottom.Inverted:=true;

Posted: Tue Oct 14, 2008 2:55 pm
by 9239148
Ah, that worked perfectly, thank you very much! :)