digant.trivedi Posted April 1, 2008 Report Share Posted April 1, 2008 Hi, Is there a way to remove series and axes from the chart? Any code snippets would be very helpfull. I am using ChartFX 7.0 Thanks for your help. Quote Link to comment Share on other sites More sharing options...
maried Posted April 4, 2008 Report Share Posted April 4, 2008 You can remove the last series from a chart. Try the following: chart1.Data.Series--; You can hide the axes by setting the Visible property to false. This will hide the axes along with the axes gridlines.chart1.AxisY.Visible = false; chart1.AxisX.Visible = false; ListProviderProject.zip 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.