Skip to main content

SeriesPointCollection.RemoveRange(Int32, Int32) Method

Removes the specified range of series points from the collection.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public void RemoveRange(
    int index,
    int count
)

Parameters

Name Type Description
index Int32

An integer specifying the starting index for the series points range to be removed.

count Int32

An integer specifying the number of series points to be removed.

Remarks

Note that calling either the RemoveRange or Clear method for the SeriesPointCollection instance also disposes all of elements, which are removed from this collection.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the RemoveRange(Int32, Int32) method.

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