Skip to main content
A newer version of this page is available. .

PointOptions.PointView Property

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.v19.1.dll

Declaration

public PointView PointView { get; set; }

Property Value

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.

Remarks

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.

Example

The following example demonstrates how to modify the PointOptions.PointView property value of the Series.PointOptions object in XAML.

<dxc:PointSeries2D.PointOptions>
    <dxc:PointOptions PointView="ArgumentAndValues" />
</dxc:PointSeries2D.PointOptions>

The following code snippets (auto-collected from DevExpress Examples) contain references to the PointView property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also