TCustomSeriesAction.Series

TCustomSeriesAction.Series
TCustomSeriesAction

property Series: TChartSeries;

Unit
TeeChartActions

Description

The Series property indicates the current "target" object for the TeeChart action.

The action, when executed, will use the Series to perform the action task.

When the Series is destroyed, this property is automatically set to nil .

The base HandlesTarget method of the action component checks the Series is a
valid Chart Series:

function TCustomSeriesAction.HandlesTarget(Target: TObject): Boolean;
begin
result:=Assigned(Series) or (Target is TChartSeries);
end;



See also:

TSeriesAction object.