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
Syntaxpublic delegate void TraceCellChangedHandler(
IntensitySeriesBase sender,
int x,
int y,
int newCellColumn,
int newCellRow,
int nearestDataColumnIndex,
int nearestDataRowIndex,
IntensityPoint nearestCellCorner,
float nearestCellCornerCoordX,
float nearestCellCornerCoordY
)
Public Delegate Sub TraceCellChangedHandler (
sender As IntensitySeriesBase,
x As Integer,
y As Integer,
newCellColumn As Integer,
newCellRow As Integer,
nearestDataColumnIndex As Integer,
nearestDataRowIndex As Integer,
nearestCellCorner As IntensityPoint,
nearestCellCornerCoordX As Single,
nearestCellCornerCoordY As Single
)
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