Class LoadEventArgs<T>
The load event arguments provides the necessary information to customize the pivot table before initializing the component.
Inheritance
System.Object
LoadEventArgs<T>
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class LoadEventArgs<T> : Object
Type Parameters
Name |
---|
T |
Constructors
LoadEventArgs()
Declaration
public LoadEventArgs()
Properties
DataSourceSettings
Defines current report.
Declaration
public DataOptions DataSourceSettings { get; set; }
Property Value
Type | Description |
---|---|
DataOptions | An instance of the DataOptions class that contains the data source settings for the current report. |
FieldsType
Defines the type of specified fields.
Declaration
public Dictionary<string, string> FieldsType { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.String> | A dictionary that maps the name of each field to its corresponding data type. |
Pivotview
Defines the pivot table instance object.
Declaration
public SfPivotView<T> Pivotview { get; set; }
Property Value
Type | Description |
---|---|
SfPivotView<T> | An instance of the SfPivotView<TValue> class that represents the pivot table control. |