In This Topic
Returns the point that corresponds to the specified data point. The data point is specified by its series and point indices.
Syntax
'Declaration
Public Function DataIndexToPoint( _
ByVal As Integer, _
ByVal As Integer _
) As Point
'Usage
Dim instance As ChartView
Dim seriesIndex As Integer
Dim pointIndex As Integer
Dim value As Point
value = instance.DataIndexToPoint(seriesIndex, pointIndex)
public Point DataIndexToPoint(
int ,
int
)
Parameters
- seriesIndex
- Index of data series.
- pointIndex
- Index of the point in the data series.
See Also