Skip to main content

TdxChartSeriesSortBy Enum

Enumerates available series point sort modes.

Declaration

TdxChartSeriesSortBy = (
    Argument,
    Value
);

Members

Name Description
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