DannE Posted November 20, 2007 Report Share Posted November 20, 2007 Is it possible to get the labels as in the graph (bottom part) for each data point in the two series? I know there are point labels but I dont want view labels where the bars end rather I want them at the bottom like in the graph... Quote Link to comment Share on other sites More sharing options...
maried Posted November 20, 2007 Report Share Posted November 20, 2007 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. 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.