Returns the client coordinates of the specified data point.
[Visual Basic]
Public Function DataIndexToCoord( _
ByVal SeriesIndex As Integer, _
ByVal PointIndex As Integer, _
ByRef XCoord As Integer, _
ByRef YCoord As Integer _
) As Boolean
[C#]
public bool DataIndexToCoord(
int SeriesIndex,
int PointIndex,
ref int XCoord,
ref int YCoord
);
[Delphi]
public function DataIndexToCoord(
SeriesIndex: Int32;
PointIndex: Int32;
var XCoord: Int32;
var YCoord: Int32
): Boolean;
Parameters
SeriesIndex
Series index of the data point.
PointIndex
Point index of the data point.
XCoord
X client coordinate.
YCoord
Y client coordinate.
Return Value
The return value indicates successful calculation.
Remarks
Mouse coordinates are given in client coordinates.
See Also
ChartGroup Class | ChartGroup Members | C1.Win.C1Chart Namespace | ChartGroup Class
Send comments about this topic to ComponentOne. Copyright © ComponentOne LLC. All rights reserved. |