Articles in this section
Category / Section

How to hide or to remove the particular series among many series in a Chartcontrol?

1 min read

 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)

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied