Class CellClickEventArgs
The cell click event arguments provides the necessary information about the cell clicked in the pivot table.
Inheritance
System.Object
CellClickEventArgs
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class CellClickEventArgs : Object
Constructors
CellClickEventArgs()
Declaration
public CellClickEventArgs()
Properties
CurrentCell
Defines the cell element that is clicked.
Declaration
public DOM CurrentCell { get; set; }
Property Value
Type |
---|
DOM |
Data
Defines the cell item that is clicked.
Declaration
public AxisSet Data { get; set; }
Property Value
Type |
---|
AxisSet |
NativeEvent
Defines the native event properties.
Declaration
public MouseEventArgs NativeEvent { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Web.MouseEventArgs | A Microsoft.AspNetCore.Components.Web.MouseEventArgs object that represents the native event properties. |