Page 1 of 1

Chart Axis

Posted: Wed Mar 02, 2011 7:53 pm
by 10052635
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.

Re: Chart Axis

Posted: Thu Mar 03, 2011 1:05 pm
by 10050769
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);

Re: Chart Axis

Posted: Thu Mar 03, 2011 3:44 pm
by 10052635
Thanks, I thought that would be the case.