Reputation: 832
I'd like to know how to remove the background grid from asp.net charts, I haven't manage to find whats the property that responsible for that. Thanks
Upvotes: 1
Views: 5442
Reputation: 1498
Try this for your chart:
Chart1.ChartAreas["YourChartArea"].AxisX.MajorGrid.Enabled = false;
Chart1.ChartAreas["YourChartArea"].AxisY.MajorGrid.Enabled = false;
Upvotes: 4