Class DrillThroughEventArgs
The drill-through event arguments provides the necessary information about the cell clicked in the pivot table for drill-through.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class DrillThroughEventArgs
Constructors
DrillThroughEventArgs()
Declaration
public DrillThroughEventArgs()
Properties
Cancel
Defines an option to restrict the drill-through operation.
Declaration
[JsonPropertyName("cancel")]
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
ColumnHeaders
Defines the column header of the clicked cell.
Declaration
[JsonPropertyName("columnHeaders")]
public string ColumnHeaders { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value, |
CurrentCell
Defines the cell item that is clicked.
Declaration
[JsonPropertyName("currentCell")]
public AxisSet CurrentCell { get; set; }
Property Value
| Type |
|---|
| AxisSet |
CurrentTarget
Defines the cell element that is clicked.
Declaration
[JsonPropertyName("currentTarget")]
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
[JsonPropertyName("gridColumns")]
public List<GridColumn> GridColumns { get; set; }
Property Value
| Type |
|---|
| List<GridColumn> |
RawData
Defines the actual cell set information about the clicked cell.
Declaration
[JsonPropertyName("rawData")]
public List<ExpandoObject> RawData { get; set; }
Property Value
| Type |
|---|
| List<ExpandoObject> |
RowHeaders
Defines the row header of the clicked cell.
Declaration
[JsonPropertyName("rowHeaders")]
public string RowHeaders { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
Value
Defines the actual value of the clicked cell.
Declaration
[JsonPropertyName("value")]
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |