vcl-dxchartcore-e8223351.md
Enumerates available series point sort modes.
TdxChartSeriesSortBy = (
Argument,
Value
);
| Name | Description |
|---|---|
Argument |
A series sorts its points against arguments.
|
| Value |
A series sorts its points against values.
|
You can sort series points against their arguments or values.
Note
TdxChartSeriesSortBy is a scoped enumeration type. Use the type name together with a scope resolution token (. in Delphi or :: in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxChartSeriesSortBy.Value (in Delphi) or TdxChartSeriesSortBy::Value (in C++Builder) to refer to the Value value in code.
The SortBy property of XY and simple series references the TdxChartSeriesSortBy type.
See Also