Class CellClickEventArgs
The cell click event arguments provides the necessary information about the cell clicked in the pivot table.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class CellClickEventArgs
Constructors
CellClickEventArgs()
Declaration
public CellClickEventArgs()
Properties
CurrentCell
Defines the cell element that is clicked.
Declaration
[JsonPropertyName("currentCell")]
public DOM CurrentCell { get; set; }
Property Value
| Type |
|---|
| DOM |
Data
Defines the cell item that is clicked.
Declaration
[JsonPropertyName("data")]
public AxisSet Data { get; set; }
Property Value
| Type |
|---|
| AxisSet |
NativeEvent
Defines the native event properties.
Declaration
[JsonPropertyName("nativeEvent")]
public MouseEventArgs NativeEvent { get; set; }
Property Value
| Type | Description |
|---|---|
| MouseEventArgs | A MouseEventArgs object that represents the native event properties. |