Returns the client coordinates of the specified data point.

Namespace:  C1.Win.C1Chart
Assembly:  C1.Win.C1Chart.2 (in C1.Win.C1Chart.2.dll)

Syntax

C#
public bool DataIndexToCoord(
	int SeriesIndex,
	int PointIndex,
	ref int XCoord,
	ref int YCoord
)
Visual Basic
Public Function DataIndexToCoord ( _
	SeriesIndex As Integer, _
	PointIndex As Integer, _
	ByRef XCoord As Integer, _
	ByRef YCoord As Integer _
) As Boolean

Parameters

SeriesIndex
Type: System..::..Int32
Series index of the data point.
PointIndex
Type: System..::..Int32
Point index of the data point.
XCoord
Type: System..::..Int32%
X client coordinate.
YCoord
Type: System..::..Int32%
Y client coordinate.

Return Value

The return value indicates successful calculation.

Remarks

Mouse coordinates are given in client coordinates.

See Also