Skip to main content

Series.Points Property

Gets the series' collection of points.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v14.2.dll

#Declaration

[XtraSerializableProperty(XtraSerializationVisibility.Collection, true, false, true)]
[NonTestableProperty]
public SeriesPointCollection Points { get; }

#Property Value

Type Description
SeriesPointCollection

A SeriesPointCollection object that represents the series point collection of the series.

#Remarks

The Points property provides access to a collection of data points that belong to an individual series.

Data points are automatically added to a series' Series.Points collection when the series is bound to a data source.

And the collection of data points can be populated manually, either at design time or runtime.

For more information, see Providing Data.

See Also