3D chart reverse bottom axis?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Monkey
Newbie
Newbie
Posts: 12
Joined: Wed Nov 09, 2005 5:00 am

3D chart reverse bottom axis?

Post by Monkey » Tue Oct 14, 2008 2:40 pm

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.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Oct 14, 2008 2:45 pm

Hi Monkey,

Yes, you can try using this:

Code: Select all

  Chart1.Axes.Bottom.Inverted:=true;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Monkey
Newbie
Newbie
Posts: 12
Joined: Wed Nov 09, 2005 5:00 am

Post by Monkey » Tue Oct 14, 2008 2:55 pm

Ah, that worked perfectly, thank you very much! :)

Post Reply