2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
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) |
2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.