IChart.AreaSeriesOrder

Syntax

AreaSeriesOrder: ChartSeriesOrder;

Description

The AreaSeriesOrder property determines the order of area chart series.

Comments

The property is outdated, use IChart.SeriesOrder.

Example

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

Sub Order;
Var
    Chart: IChart;
Begin
    Chart.AreaSeriesOrder := 1 As ChartSeriesOrder;
End Sub Order;

After executing the example the order of series of the area chart is changed to the reverse order.

See also:

IChart