Click or drag to resize

IntensitySeriesBaseTraceCellChangedHandler Delegate

LightningChart .NET Help
Delegate for TraceCellChanged event

Namespace:  Arction.Wpf.ChartingMVVM.SeriesXY
Assembly:  Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntax
public delegate void TraceCellChangedHandler(
	IntensitySeriesBase sender,
	int x,
	int y,
	int newCellColumn,
	int newCellRow,
	int nearestDataColumnIndex,
	int nearestDataRowIndex,
	IntensityPoint nearestCellCorner,
	float nearestCellCornerCoordX,
	float nearestCellCornerCoordY
)

Parameters

sender
Type: Arction.Wpf.ChartingMVVM.SeriesXYIntensitySeriesBase
Sender
x
Type: SystemInt32
X coordinate
y
Type: SystemInt32
Y coordinate
newCellColumn
Type: SystemInt32
New column index (X dimension)
newCellRow
Type: SystemInt32
New row index (Y dimension)
nearestDataColumnIndex
Type: SystemInt32
Nearest data column index at coordinate
nearestDataRowIndex
Type: SystemInt32
Nearest data row index at coordinate
nearestCellCorner
Type: Arction.Wpf.ChartingMVVMIntensityPoint
Nearest intensity point, in corner of the cell. Not available when PixelRendering is enabled.
nearestCellCornerCoordX
Type: SystemSingle
Screen X coordinate of nearest data column to mouse coordinate. Not available when PixelRendering is enabled.
nearestCellCornerCoordY
Type: SystemSingle
Screen Y coordinate of nearest data column to mouse coordinate. Not available when PixelRendering is enabled.
See Also