Chart Axis
Chart Axis
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
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:
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 |
Instructions - How to post in this forum |
Re: Chart Axis
Thanks, I thought that would be the case.