IntensitySeriesBaseIsCoordinateOverCell Method |
LightningChart .NET Help
Check if coordinate is over cell in the series.
Namespace:
Arction.WinForms.Charting.SeriesXY
Assembly:
Arction.WinForms.Charting.LightningChart (in Arction.WinForms.Charting.LightningChart.dll) Version: 10.3.1
Syntaxpublic bool IsCoordinateOverCell(
int x,
int y,
out int hitColumn,
out int hitRow,
bool useDIP = true
)
Public Function IsCoordinateOverCell (
x As Integer,
y As Integer,
<OutAttribute> ByRef hitColumn As Integer,
<OutAttribute> ByRef hitRow As Integer,
Optional useDIP As Boolean = true
) As Boolean
public:
bool IsCoordinateOverCell(
int x,
int y,
[OutAttribute] int% hitColumn,
[OutAttribute] int% hitRow,
bool useDIP = true
)
Parameters
- x
- Type: SystemInt32
X-coordinate. - y
- Type: SystemInt32
Y-coordinate. - hitColumn
- Type: SystemInt32
Returned column index. - hitRow
- Type: SystemInt32
Returned row index. - useDIP (Optional)
- Type: SystemBoolean
Use DIP instead of pixels as parameters.
Return Value
Type:
BooleanTrue, if coordinate is over some cell, false otherwise.
See Also