Skip to main content
A newer version of this page is available. .

TdxChartCustomSeries.SortOrder Property

Specifies the sort order for the series.

Declaration

property SortOrder: TdxSortOrder read; write; default soNone;

Property Value

Type Default Description
TdxSortOrder soNone

If soNone, no sorting is applied to series points. If soAscending or soDescending, the series sorts its points in ascending or descending order according to the SortBy property value.

Remarks

Set the SortOrder property to soAscending or soDescending to sort series points in ascending or descending order, respectively. To sort series points against arguments or values, set the SortBy property to TdxChartSeriesSortBy.Argument or TdxChartSeriesSortBy.Value, respectively.

Note

SortOrder and SortBy properties do not affect the order of series points accessible through the Points property.

Default Value

The SortOrder property’s default value is soNone.

See Also