corelibraries-devexpress-dot-xtracharts-1842c4f9.md
Lists the values specifying which range area values (minimum, maximum, or both) should be displayed within series labels in the 2D Range Area and 3D Range Area view types.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[ResourceFinder(typeof(XtraChartsResFinder), "PropertyNamesRes")]
public enum RangeAreaLabelKind
<ResourceFinder(GetType(XtraChartsResFinder), "PropertyNamesRes")>
Public Enum RangeAreaLabelKind
| Name | Description |
|---|---|
OneLabel |
Show one label in the center of the range bar with both maximum and minimum values.
|
| TwoLabels |
Show both labels with maximum and minimum values of a data point.
|
| MaxValueLabel |
Show only the label for the maximum value of a data point.
|
| MinValueLabel |
Show only the label for the minimum value of a data point.
|
| Value1Label |
Show only the label for the value stored in the SeriesPointKey.Value_1 property of a data point.
|
| Value2Label |
Show only the label for the value stored in the SeriesPointKey.Value_2 property of a data point.
|
The following properties accept/return RangeAreaLabelKind values:
| Library | Related API Members |
|---|---|
| Cross-Platform Class Library | RangeAreaSeriesLabel.Kind |
| WinForms Controls | RangeAreaSeriesLabelModel.Kind |
The values listed by the RangeAreaLabelKind enumeration are used to customize the appearance of series labels in range areas via the RangeAreaSeriesLabel.Kind property.
See Also