Shows or hides this series.
public Boolean Active {get; set;}

Remarks


The Active property shows or hides the Series. It can be changed both at design time or runtime. When hiding, all point values are preserved, so there's no need to refill the values again when showing. The Series relatives Chart Axis are rescaled in order to accomodate changes.

Example


[C#]

private void button1_Click_1(object sender, System.EventArgs e) 
{
     ((Steema.TeeChart.Styles.Bar)tChart1[0]).Active =! ((Steema.TeeChart.Styles.Bar)tChart1[0]).Active;
}


See Also

Series Class | Series Members | Steema.TeeChart.Styles Namespace