wpf-devexpress-dot-xpf-dot-charts-a34c1d93.md
Lists the values specifying which range area values (minimum, maximum, or both) should be displayed within series labels in the 2D Range Area view type.
Namespace : DevExpress.Xpf.Charts
Assembly : DevExpress.Xpf.Charts.v25.2.dll
NuGet Package : DevExpress.Wpf.Charts
public enum RangeAreaLabelKind
Public Enum RangeAreaLabelKind
| Name | Description |
|---|---|
OneLabel |
Shows one label in the center of the range area with both maximum and minimum values.
|
| TwoLabels |
Shows both labels with maximum and minimum values of a data point.
|
| MaxValueLabel |
Shows only the label for the maximum value of a data point.
|
| MinValueLabel |
Shows only the label for the minimum value of a data point.
|
| Value1Label |
Shows only the label for the value stored in the SeriesPoint.Value property of a data point.
|
| Value2Label |
Shows only the label for the value stored in the RangeAreaSeries2D.Value2 property of a data point.
|
The values listed by the RangeAreaLabelKind enumeration are used to customize the appearance of series labels in the range area via the RangeAreaSeries2D.LabelKind property.
See Also