Skip to main content

SeriesLabelBase.ValueType Property

OBSOLETE

This property is now obsolete. Use the PointView property instead.

Gets or sets a value that specifies which values should be displayed as the contents of series labels.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

[Obsolete("This property is now obsolete. Use the PointOptions.PointView property instead.")]
[Browsable(false)]
public SeriesLabelValueType ValueType { get; set; }

Property Value

Type Description
SeriesLabelValueType

A SeriesLabelValueType enumeration value.

Available values:

Name Description
Points

Specifies that series labels display data values of the corresponding series points.

SeriesName

Specifies that series labels display the name of the corresponding series.

Remarks

Use the ValueType property to control the contents of series labels. If this property is set to SeriesLabelValueType.SeriesName, all series labels display the same name of the series to which they belong. If the ValueType property is set to the SeriesLabelValueType.Points value, the contents of series labels depend upon the series’ point settings and is exactly specified by the PointOptions.PointView property.

See Also