[]
Determines a pixel coordinate by given a data row and column.
public bool DataIndexToCoord(int columnIndex, int rowIndex, ref int sx, ref int sy)
Public Function DataIndexToCoord(columnIndex As Integer, rowIndex As Integer, ByRef sx As Integer, ByRef sy As Integer) As Boolean
| Type | Name | Description |
|---|---|---|
| int | columnIndex | Column index(Series index for point data layout). |
| int | rowIndex | Row index(Point index for point data layout). |
| int | sx | Client x coordinate in pixels. |
| int | sy | Client y coordinate in pixels. |
| Type | Description |
|---|---|
| bool | Boolean result of coordinate conversion. |
For point data layout the column parameter relates to series index and the row parameter relates to point index.