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.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[Browsable(false)]
[Obsolete("This property is now obsolete. Use the SeriesPointsSortingKey property instead.")]
[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.