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.SortBy Property

Specifies if the series sorts its data points by their arguments or values.

#Declaration

Delphi
property SortBy: TdxChartSeriesSortBy read; write; default TdxChartSeriesSortBy.Argument;

#Property Value

Type Default Description
TdxChartSeriesSortBy Argument
TdxChartSeriesSortBy.Argument
Default. The series sorts its data points by arguments if the SortOrder property is set to soAscending or soDescending.
TdxChartSeriesSortBy.Value
The series sorts its data points by values if the SortOrder property is set to soAscending or soDescending.

#Remarks

Set the SortOrder property to soAscending or soDescending to sort series points in ascending or descending order, respectively.

Note

  • The SortBy property value is ignored if the SortOrder property is set to soNone.
  • SortBy and SortOrder properties do not affect the actual order of series points accessible through the Points property.

#Default Value

The SortBy property’s default value is TdxChartSeriesSortBy.Argument.

See Also