HitTestResult.PointIndex Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the index of a data point, if any, returned by a hit test.
public:
property int PointIndex { int get(); void set(int value); };
public int PointIndex { get; set; }
member this.PointIndex : int with get, set
Public Property PointIndex As Integer
Property Value
An integer
value that represents the index of a data point returned by a hit test. The default value is negative one (-1).
Remarks
If a data point is at the location that is checked by a hit test, the PointIndex property will return the zero-based index of that data point, otherwise it will return a negative one (-1).
All data points are stored in a DataPointCollection, which is exposed as the Points collection property of a Series object; the index of the DataPointCollection is zero-based.
Use the Series property to determine the series to which the data point belongs.