ISeries.Active
ISeries
property Active: WordBool;
Type Library
TeeChartx
Description
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.
Active Example
Delphi
TChart1.Series[ 0 ].Active:= not TChart1.Series[ 0 ].Active;
Visual Basic
TChart1.Series( 0 ).Active = Not TChart1.Series( 0 ).Active