IChartSeries.FixedCount

Syntax

FixedCount: Integer;

Description

The FixedCount property determines the number of fixed (static) series, formatting of which remains the same.

Example

This example assumes that there is the Chart object of the IChart type.

Sub Fixed;

Var

Chart: IChart;

Begin

Chart.Series.FixedCount := 1;

End Sub Fixed;

After executing the example only style of the first chart series remains changed.

See also:

IChartSeries