ComponentOne Chart for WPF and Silverlight
C1.WPF.C1Chart Namespace / ChartView Class / DataIndexToPoint Method
Index of data series.
Index of the point in the data series.


In This Topic
    DataIndexToPoint Method
    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 seriesIndex As Integer, _
       ByVal pointIndex 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 seriesIndex,
       int pointIndex
    )

    Parameters

    seriesIndex
    Index of data series.
    pointIndex
    Index of the point in the data series.
    See Also