Skip to main content

TdxChartCustomSeries.SortBy Property

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

Declaration

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