Skip to main content

SeriesPointCollection.IndexOf(SeriesPoint) Method

Returns the specified object’s position within the collection.

Namespace: DevExpress.Xpf.Charts

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

NuGet Package: DevExpress.Wpf.Charts

Declaration

public int IndexOf(
    SeriesPoint point
)

Parameters

Name Type Description
point SeriesPoint

A series point 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 snippet (auto-collected from DevExpress Examples) contains a reference to the IndexOf(SeriesPoint) 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