How to hide or to remove the particular series among many series in a Chartcontrol?
One can hide the particular series by setting its visibility to false and others to true. One can add or remove the particular series by using Add(), Remove() functions in ChartSeries.
C#
// Applying visibility to the series.
this.chartControl1.Series[0].Visible = false;
this.chartControl1.Series[1].Visible = true;
//Adding a series
this.chartControl1.Series.Add(series2);
//Removing a series
this.chartControl1.Series.Remove(series2);
VB
' Applying visibility to the series.
Me.chartControl1.Series(0).Visible = False
Me.chartControl1.Series(1).Visible = True
'Adding a series
Me.chartControl1.Series.Add(series2)
'Removing a series
Me.chartControl1.Series.Remove(series2)