Isvisible property does not take effect

Hi,

I’m using the ver 1.8.3.0, the following codes do not take any effect eventhough I had set them to false.

chart.MajorGridLines.IsVisible = false;
chart.ChartArea.Border.IsVisible = false;
chart.PlotArea.Border.IsVisible = false;
chart.ValueAxis.AxisLine.IsVisible = false;

I’m currently using an alternative way which is setting the line & border color same to the background color.

Thanks!

Thanks for your feedback.

I will make it work with other chart api enhancement before the end of this month.

Laurence,

Has the IsVisible property been fixed? I have tried it with the latest release, using it on the Legend and chart and it doesn’t seem to remove the border? If not, any time frame for this fix?

Thanks

Hi,

Now it’s available. Please download fix 2.1.3 at



You can use the following code to hide the borders.

chart.Legend.Border.IsVisible = false;
chart.PlotArea.Border.IsVisible = false;
chart.ChartArea.Border.IsVisible = false;