SeriesOrder: ChartSeriesOrder;
The SeriesOrder property determines order of chart series.
If required, the chart type can be transformed into a mixed type by executing the command: Chart.Type := 3 As ChartType.
This example assumes that there is the Chart object of the IChart type.
Sub Order;
Var
Chart : IChart;
Begin
Chart.SeriesOrder := 1 As ChartSeriesOrder;
End Sub Order;
After executing the example the order of series of the mixed chart is changed to the reverse order.
See also: