wpf-devexpress-dot-xpf-dot-charts-dot-pointoptions-cea356db.md
Gets or sets a value that specifies which information should be displayed within series labels and legend items.
Namespace : DevExpress.Xpf.Charts
Assembly : DevExpress.Xpf.Charts.v25.2.dll
NuGet Package : DevExpress.Wpf.Charts
public PointView PointView { get; set; }
Public Property PointView As PointView
| Type | Description |
|---|---|
| PointView |
A PointView enumeration value. The default value is PointView.Undefined.
|
Available values:
| Name | Description |
|---|---|
| Argument |
Series point labels display arguments of the corresponding series points.
| | Values |
Series point labels display values of the corresponding series points.
| | ArgumentAndValues |
Series point labels display arguments and data values of the corresponding series points.
| | SeriesName |
Series point labels display the series name of the corresponding series points (which can be taken from the Name property of a Series).
| | Undefined |
Series point labels display the text determined by the PointOptions.Pattern property value, if it isn’t equal to Empty; otherwise they display values of the corresponding series points.
|
To have greater control over what text should be displayed within series labels and legend items, use the PointOptions.Pattern property. Note that if both properties are set to non-default values, the PointOptions.Pattern property has a higher priority over the PointView property.
See Also