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

Message ListMessage List     Post MessagePost Message

  syncXAxis?
Posted by MarkZB on Jun-21-2018 05:29
Attachments:
How do I sync the second X axis (similar to syncYAxis)?
syncXAxis.png

  Re: syncXAxis?
Posted by Peter Kwan on Jun-22-2018 02:29
Hi MarkZB,

You can use Axis.syncAxis or Axis.copyAxis to sync any two axes, even for axes from different charts or between x and y axes.

For example:

c.xAxis2().copyAxis(c.xAxis());

or

c.xAxis2().syncAxis(c.xAxis());

Hope this can help.

Regards
Peter Kwan