windowsforms-devexpress-dot-xtracharts-dot-designer-dot-seriespointfiltermodel-05a7a52e.md
Gets or sets the value of the SeriesPointFilter.Key within the model.
Namespace : DevExpress.XtraCharts.Designer
Assembly : DevExpress.XtraCharts.v25.2.Wizard.dll
NuGet Package : DevExpress.Win.Charts
[PropertyForOptions]
public SeriesPointKey Key { get; set; }
<PropertyForOptions>
Public Property Key As SeriesPointKey
| Type | Description |
|---|---|
| SeriesPointKey |
The coordinate of a series point by which filtering is performed.
|
Available values:
| Name | Description |
|---|---|
| Argument |
Specifies that sorting is performed by the argument values of a series’ data points.
| | Value_1 |
Specifies that series points are sorted based on the first data value within the SeriesPoint.Values array of a series’s data points. For financial data, Value_1 indicates the Low value. For BoxPlot series, it indicates the Min value.
| | Value_2 |
Specifies that series points are sorted based on the second data value within the SeriesPoint.Values array of a series’s data points. For financial data, Value_2 indicates the High value. For BoxPlot series, it indicates the Quartile1 value.
| | Value_3 |
Specifies that series points are sorted based on the third data value within the SeriesPoint.Values array of a series’s data points. For financial data, Value_3 indicates the Open value. For BoxPlot series, it indicates the Median value.
| | Value_4 |
Specifies that series points are sorted based on the fourth data value within the SeriesPoint.Values array of a series’s data points. For financial data, Value_4 indicates the Close value. For BoxPlot series, it indicates the Quartile3 value.
| | Value_5 |
Specifies that series points are sorted based on the fifth data value within the SeriesPoint.Values array of a series’s data points. For BoxPlot series, it indicates the Max value.
| | Value_6 |
Specifies that series points are sorted based on the sixth data value within the SeriesPoint.Values array of a series’s data points. For BoxPlot series, it indicates the Mean value.
|
See Also