Skip to main content
A newer version of this page is available. .

SeriesBase.PointsSortingKey Property

OBSOLETE

This property is now obsolete. Use the SeriesPointsSortingKey property instead.

Gets or sets a value that specifies the values of the data points that the series should be sorted by.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

[Obsolete("This property is now obsolete. Use the SeriesPointsSortingKey property instead.")]
[Browsable(false)]
[XtraSerializableProperty(XtraSerializationVisibility.Hidden)]
public SortingKey PointsSortingKey { get; set; }

Property Value

Type Description
SortingKey

A SortingKey enumeration value.

Available values:

Name Description
Argument

Specifies that sorting is performed by the argument values of a series’ data points.

Value_1

Specifies that sorting is performed by the first data value within the SeriesPoint.Values array of a series’s data points. For financial data this indicates the Low value.

Value_2

Specifies that sorting is performed by the second data value within the SeriesPoint.Values array of a series’s data points. For financial data this indicates the High value.

Value_3

Specifies that sorting is performed by the third data value within the SeriesPoint.Values array of a series’s data points. For financial data this indicates the Open value.

Value_4

Specifies that sorting is performed by the fourth data value within the SeriesPoint.Values array of a series’s data points. For financial data this indicates the Close value.

Remarks

The PointsSortingKey property is now obsolete. Use the SeriesBase.SeriesPointsSortingKey property instead.

See Also