TCustomChart.RemoveAllSeries
TCustomChart
procedure RemoveAllSeries;
Unit
Chart
Description
The RemoveAllSeries method removes all Series in the Chart TCustomAxisPanel.SeriesList. The removed Series are NOT freed.
This is the implementation of RemoveAllSeries method:
Procedure TChart.RemoveAllSeries;
Begin
While SeriesList.Count>0 do RemoveSeries(Series[0]);
End;