Click or drag to resize

IntensitySeriesBaseIsCoordinateOverCell Method

LightningChart .NET Help
Check if coordinate is over cell in the series.

Namespace:  Arction.Wpf.ChartingMVVM.SeriesXY
Assembly:  Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntax
public bool IsCoordinateOverCell(
	int x,
	int y,
	out int hitColumn,
	out 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: Boolean
True, if coordinate is over some cell, false otherwise.
See Also