Back to Devexpress

TdxChartSeriesSortBy Enum

vcl-dxchartcore-e8223351.md

latest1.1 KB
Original Source

TdxChartSeriesSortBy Enum

Enumerates available series point sort modes.

Declaration

delphi
TdxChartSeriesSortBy = (
    Argument,
    Value
);

Members

NameDescription
Argument

A series sorts its points against arguments.

| | Value |

A series sorts its points against values.

|

Remarks

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.

Direct TdxChartSeriesSortBy Type References

The SortBy property of XY and simple series references the TdxChartSeriesSortBy type.

See Also

dxChartCore Unit