User (Legacy) Posted November 19, 2003 Report Share 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 Quote Link to comment Share on other sites More sharing options...
Software FX Posted November 19, 2003 Report Share 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. Quote Link to comment Share on other sites More sharing options...
User (Legacy) Posted November 19, 2003 Author Report Share 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? Quote Link to comment Share on other sites More sharing options...
Software FX Posted November 19, 2003 Report Share Posted November 19, 2003 The only other thing will be annotation objects. -- FP Software FX, Inc. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.