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

TdxChartSeriesSortBy Enum

Enumerates available series point sort modes.

#Declaration

Delphi
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