Jump to content
Software FX Community

Series point labels


DannE

Recommended Posts

Set the x-axis labels as: 

Chart1.AxisX.Label[0] = "January" + "\n" + "1998";

Chart1.AxisX.Label[1] =

"February" + "\n" + "1998";

Chart1.AxisX.Label[2] =

"March" + "\n" + "1998";

or you can set legend as follows:

Chart1.Legend[0] = "January" + "\n" + "1998";

Chart1.Legend[1] =

"February" + "\n" + "1998";

Chart1.Legend[2] =

"March" + "\n" + "1998";

There are lot of samples in our ChartFX resource center under the Axis Handling section.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...