Class PivotFieldListEvents<TValue>
Configures pivot component based events.
Inheritance
System.Object
Syncfusion.Blazor.SfBaseComponent
PivotFieldListEvents<TValue>
Assembly: Syncfusion.Blazor.dll
Syntax
public class PivotFieldListEvents<TValue> : SfDataBoundComponent
Type Parameters
Constructors
PivotFieldListEvents()
Declaration
public PivotFieldListEvents()
Properties
AggregateCellInfo
It allows to change the each cell value during engine populating.
Declaration
public EventCallback<AggregateEventArgs> AggregateCellInfo { get; set; }
Property Value
It triggers before aggregate type context menu opens.
Declaration
public EventCallback<AggregateMenuOpenEventArgs> AggregateMenuOpen { get; set; }
Property Value
CalculatedFieldCreate
It triggers before a calculated field created/edited during runtime.
Declaration
public EventCallback<CalculatedFieldCreateEventArgs> CalculatedFieldCreate { get; set; }
Property Value
Created
It trigger when the PivotFieldList component is created.
Declaration
public EventCallback<object> Created { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
DataBound
It trigger when the PivotFieldList rendered.
Declaration
public EventCallback<object> DataBound { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
Destroyed
It trigger when the PivotFieldList component getting destroyed.
Declaration
public EventCallback<object> Destroyed { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<System.Object> |
|
EnginePopulated
It triggers after the pivot engine populated and allows to customize the pivot datasource settings.
Declaration
public EventCallback<EnginePopulatedEventArgs> EnginePopulated { get; set; }
Property Value
EnginePopulating
It triggers before the pivot engine starts to populate and allows to customize the pivot datasource settings.
Declaration
public EventCallback<EnginePopulatingEventArgs> EnginePopulating { get; set; }
Property Value
FieldDragStart
It trigger when a field drag (move) starts.
Declaration
public EventCallback<FieldDragStartEventArgs> FieldDragStart { get; set; }
Property Value
FieldDrop
It triggers before a field drops into any axis.
Declaration
public EventCallback<FieldDropEventArgs> FieldDrop { get; set; }
Property Value
FieldDropped
It trigger when a field getting dropped into any axis.
Declaration
public EventCallback<FieldDroppedEventArgs> FieldDropped { get; set; }
Property Value
FieldRemove
It triggers before removing the field from any axis during runtime.
Declaration
public EventCallback<FieldRemoveEventArgs> FieldRemove { get; set; }
Property Value
MemberEditorOpen
It triggers before member editor dialog opens.
Declaration
public EventCallback<MemberEditorOpenEventArgs> MemberEditorOpen { get; set; }
Property Value
MemberFiltering
It triggers before the filtering applied.
Declaration
public EventCallback<MemberFilteringEventArgs> MemberFiltering { get; set; }
Property Value
OnLoad
It allows any customization of PivotFieldList properties on initial rendering. Based on the changes, the PivotFieldList will be rendered.
Declaration
public EventCallback<LoadEventArgs<TValue>> OnLoad { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.EventCallback<LoadEventArgs<TValue>> |
|
Parent
Declaration
protected SfPivotFieldList<TValue> Parent { get; set; }
Property Value
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides