Jump to content
Software FX Community

Re: multiple Series and YAxis from DataSet


Software FX

Recommended Posts

To assign a specific series to a specific axis you do:

chart.Series[<index>].YAxis = <axis index>;

If you do this BEFORE passing the data (setting the datasource) your new

axes will be automatically scaled to the data.

As far as the colors, you can set the Text Color of any axis by doing:

axis.TextColor = <color>

To turn on the series legend box:

chart.SerLegBox = true;

--

FP

Software FX

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...