ASE Home Page Products Download Purchase Support About ASE
ChartDirector Support
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  Change Direction of x axis
Posted by str on Dec-02-2015 17:28
Hi,
is there any way to change the direction of the x axis, meaning that positive values point to right (instead to left) and negative values point to the left (instead to right).

Regards
Steffen

  Re: Change Direction of x axis
Posted by Peter Kwan on Dec-02-2015 22:54
Hi str,

You may try Axis.setReverse. For example, in C#/Java, it is like:

c.xAxis().setReverse();

Hope this can help.

Regards
Peter Kwan

  Re: Change Direction of x axis
Posted by str on Dec-03-2015 19:15
Thanks, thats exactly what I need!