Jump to content
Software FX Community

Multiple x axis


Software FX

Recommended Posts

Yes. You can, however, you can not associate any series to it, it is

displayed just as a reference but it is detached from the chart data.

To create a secondary X-Axis (you can create a many as you want) do:

Axis axis = chart.Axis[3];

axis.YAxis = false;

axis.Visible = true;

axis.Min = <min value>;

axis.Max = <max value>;

etc.

--

FP

Software FX, Inc.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...