Jump to content
Software FX Community

Labels on random places x-axis


User (Legacy)

Recommended Posts

Posted

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.

Posted

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

> that show outside of the chart area.

thanks for the quick reply, but,

i'm using ChartFX 98, which doesn't seem to support the 'outsidetext'

property. Any other solution for this problem?

Archived

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

×
×
  • Create New...