Class DrillArgs<T>
The drill event arguments provide the necessary information about the pivot cell that performing drill operation.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class DrillArgs<T>
Type Parameters
| Name |
|---|
| T |
Constructors
DrillArgs()
Declaration
public DrillArgs()
Properties
Cancel
Defines an option to restrict the drill operation.
Declaration
[JsonPropertyName("cancel")]
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
DrillInfo
Defines the current cell drill information.
Declaration
[JsonPropertyName("drillInfo")]
public DrilledItem DrillInfo { get; set; }
Property Value
| Type |
|---|
| DrilledItem |
Pivotview
Defines the pivot table instance.
Declaration
[JsonPropertyName("pivotview")]
public SfPivotView<T> Pivotview { get; set; }
Property Value
| Type |
|---|
| SfPivotView<T> |