Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxChartCustomSeries.SortOrder Property

Specifies the sort order for the series.

#Declaration

Delphi
property SortOrder: TdxSortOrder read; write; default soNone;

#Property Value

Type Default Description
TdxSortOrder soNone
soNone
Default. Series points are unsorted. The series displays them according to the point order in the Points collection.
soAscending | soDescending

The series displays its points in ascending or descending order according to the SortBy property value.

The actual order of points in the Points collection does not change.

#Remarks

Set the SortOrder property to soAscending or soDescending to sort series points in ascending or descending order, respectively. To sort series points by 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