User (Legacy) Posted November 19, 2003 Report Posted November 19, 2003 Hi, Is it possible to put labels at arbitrary places on the X-axis? (eg, on an axis running from 1 to 10, put labels at 3.14 and 5.55). tia, Jan
Software FX Posted November 19, 2003 Report Posted November 19, 2003 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.
User (Legacy) Posted November 19, 2003 Author Report Posted November 19, 2003 > 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?
Software FX Posted November 19, 2003 Report Posted November 19, 2003 The only other thing will be annotation objects. -- FP Software FX, Inc.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.