Determines a pixel coordinate by given a data row and column.
Namespace:
C1.Win.C1Chart3DAssembly: C1.Win.C1Chart3D.2 (in C1.Win.C1Chart3D.2.dll)
Syntax
C# |
---|
public bool DataIndexToCoord( int columnIndex, int rowIndex, ref int sx, ref int sy ) |
Visual Basic |
---|
Public Function DataIndexToCoord ( _ columnIndex As Integer, _ rowIndex As Integer, _ ByRef sx As Integer, _ ByRef sy As Integer _ ) As Boolean |
Parameters
- columnIndex
- Type: System..::..Int32
Column index(Series index for point data layout).
- rowIndex
- Type: System..::..Int32
Row index(Point index for point data layout).
- sx
- Type: System..::..Int32%
Client x coordinate in pixels.
- sy
- Type: System..::..Int32%
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.