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

SeriesPointCollection.AddRange(SeriesPoint[]) Method

Appends an array of series points to the collection.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v21.2.dll

NuGet Package: DevExpress.Charts

Declaration

public void AddRange(
    params SeriesPoint[] points
)

Parameters

Name Type Description
points SeriesPoint[]

An array of SeriesPoint objects to append to the collection.

Remarks

Objects are added to the end of the collection in the same order that they have in the array.

Note

Before adding a SeriesPoint to the collection, use the Series.IsCompatible method, to check if this point’s values correspond to the scale type of the current Series.

See Also