I have a chart and I need to clear it in order to populate it with different values. The chart has 3 series, all defined in the .aspx page.
The problem is when I ca
This will actually completely remove the series from the chart (not just remove the points from the series).
while (chart1.Series.Count > 0) { chart1.Series.RemoveAt(0); }