ComponentOne 3D Chart for WinForms
C1.Win.C1Chart3D.4.8 Assembly / C1.Win.C1Chart3D Namespace / Chart3DData Class / DataIndexToCoord Method
Column index(Series index for point data layout).
Row index(Point index for point data layout).
Client x coordinate in pixels.
Client y coordinate in pixels.

In This Topic
    DataIndexToCoord Method
    In This Topic
    Determines a pixel coordinate by given a data row and column.
    Syntax
    'Declaration
     
    Public Function DataIndexToCoord( _
       ByVal columnIndex As System.Integer, _
       ByVal rowIndex As System.Integer, _
       ByRef sx As System.Integer, _
       ByRef sy As System.Integer _
    ) As System.Boolean
    public System.bool DataIndexToCoord( 
       System.int columnIndex,
       System.int rowIndex,
       ref System.int sx,
       ref System.int sy
    )

    Parameters

    columnIndex
    Column index(Series index for point data layout).
    rowIndex
    Row index(Point index for point data layout).
    sx
    Client x coordinate in pixels.
    sy
    Client y coordinate in pixels.

    Return Value

    Boolean result of coordinate conversion.
    Remarks
    For point data layout the column parameter relates to series index and the row parameter relates to point index.
    See Also