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

SeriesCollection.IndexOf(Series) Method

Returns the specified object’s position within the collection.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

public int IndexOf(
    Series series
)

Parameters

Name Type Description
series Series

A Series object to locate in the collection.

Returns

Type Description
Int32

A zero-based integer which represents the object’s position within the collection. -1 if the object doesn’t belong to the collection.

Remarks

This method scans the collection starting from the first element and returns the index of the first matching element found.

The following code snippets (auto-collected from DevExpress Examples) contain references to the IndexOf(Series) 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