Chart Axis

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Roy
Newbie
Newbie
Posts: 64
Joined: Wed Feb 25, 2009 12:00 am
Location: Dallas, Texas
Contact:

Chart Axis

Post by Roy » Wed Mar 02, 2011 7:53 pm

What I really would like to do is swap the data points X and Y values such that all od the X values are noe the Y values and all of the Y values are now the X values.

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Chart Axis

Post by Sandra » Thu Mar 03, 2011 1:05 pm

Hello Roy,

I am afraid that change X to Y and Y to X , in a only series, it isn't possible, but you always can do something as next:

Code: Select all

Series2.Add(Series1.YValues,Series1.XValues);
Best Regards,
Sandra Pazos / 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

Roy
Newbie
Newbie
Posts: 64
Joined: Wed Feb 25, 2009 12:00 am
Location: Dallas, Texas
Contact:

Re: Chart Axis

Post by Roy » Thu Mar 03, 2011 3:44 pm

Thanks, I thought that would be the case.

Post Reply