Skip to main content

PointOptions.PointView Property

Gets or sets a value that specifies which information should be displayed within series labels and legend items.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public PointView PointView { get; set; }

Property Value

Type Description
PointView

A PointView enumeration value.

Available values:

Name Description
Argument

Specifies that series labels identify series points by their argument values (which can be taken from the SeriesPoint.Argument property).

PointView_Argument.png

Values

Specifies that series labels identify data points by their values (which can be taken from the SeriesPoint.Values property).

PointView_Values.png

ArgumentAndValues

Specifies that series labels reflect both arguments and values for the corresponding series points. In this case, the resulting label content is composed of the SeriesPoint.Argument and SeriesPoint.Values property values, based on the specified PointOptions.Pattern.

PointView_ArgumentAndValues.png

SeriesName

Specifies that series labels identify series points by the name of their series (which can be taken from the Series.Name property).

Undefined

This means the PointOptions.PointView property value is ignored, and the text of series labels is determined by the PointOptions.Pattern property value.

Remarks

To have greater control over what text should be displayed within series labels and legend items, use the PointOptions.Pattern property.

See Also