Mark Posted January 14, 2008 Report Share Posted January 14, 2008 Hello, How do I make the point label appear for only certain points, instead of showing them for every point in the whole series? Thanks Quote Link to comment Share on other sites More sharing options...
maximop Posted January 14, 2008 Report Share Posted January 14, 2008 The PointAttributesCollection provides access to the PointLabels of each individual point. For example, on a line chart with 10 points, I can do the following: chart1.Points[0, 0].PointLabels.Visible = true; chart1.Points[0, 2].PointLabels.Visible = true;chart1.Points[0, 4].PointLabels.Visible = true; chart1.Points[0, 6].PointLabels.Visible = true;chart1.Points[0, 8].PointLabels.Visible = true; 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.