Jump to content
Software FX Community

Labels on random places x-axis


User (Legacy)

Recommended Posts

You can achieve this using constant lines. Constant lines can have labels

that show outside of the chart area.

You can do something like:

ConstantLine constantLine = chart1.ConstantLines[0];

constantLine.Value = 3.14;

constantLine.Axis = AxisItem.XAxis;

constantLine.Text = "3.14";

constantLine.OutsideText = true;

Please check de docs. for details.

--

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...