Class DrillThroughEventArgs
The drill-through event arguments provides the necessary information about the cell clicked in the pivot table for drill-through.
Inheritance
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class DrillThroughEventArgs : Object
Constructors
DrillThroughEventArgs()
Declaration
public DrillThroughEventArgs()
Properties
Cancel
Defines an option to restrict the drill-through operation.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
ColumnHeaders
Defines the column header of the clicked cell.
Declaration
public string ColumnHeaders { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value, |
CurrentCell
Defines the cell item that is clicked.
Declaration
public AxisSet CurrentCell { get; set; }
Property Value
Type |
---|
AxisSet |
CurrentTarget
Defines the cell element that is clicked.
Declaration
public DOM CurrentTarget { get; set; }
Property Value
Type | Description |
---|---|
DOM | The DOM element that represents the cell element that is clicked. |
GridColumns
Defines the grid cell information that used to render multiple header rows(stacked headers) on the Grid header in drill-through popup dialog.
Declaration
public List<GridColumn> GridColumns { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<GridColumn> |
RawData
Defines the actual cell set information about the clicked cell.
Declaration
public List<ExpandoObject> RawData { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Dynamic.ExpandoObject> |
RowHeaders
Defines the row header of the clicked cell.
Declaration
public string RowHeaders { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Value
Defines the actual value of the clicked cell.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |