IChartSelectedSeries.SelectAll

Syntax

SelectAll (IncludeFixed: Boolean; IncludeTrends: Boolean);

Parameters

IncludeFixed. The series that include fixed dimensions.

IncludeTrends. The series that include the trend lines.

Description

The SelectAll method selects all the data series that correspond to the specified parameters.

Example

Executing the example requires a form, the Button1 button located on this form, the ChartBox component and UiChart component used as a data source.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
    Var
        SelectedSeries: IChartSelectedSeries;        
    Begin
        SelectedSeries:= UiChart1.Chart.SelectedSeries;        
        SelectedSeries.SelectAll(TrueTrue);
    End Sub Button1OnClick;

After executing the example, the data series that correspond to the specified parameters are selected.

See also:

IChartSelectedSeries