Class EnginePopulatedEventArgs
The engine populated event arguments provides the necessary information about the engine populated using updated report.
Inheritance
System.Object
EnginePopulatedEventArgs
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class EnginePopulatedEventArgs : Object
Constructors
EnginePopulatedEventArgs()
Declaration
public EnginePopulatedEventArgs()
Properties
DataSourceSettings
Defines the updated report to get updated pivot table cell collection and field list information.
Declaration
public DataOptions DataSourceSettings { get; set; }
Property Value
Type |
---|
DataOptions |
PivotFieldList
Defines the updated field list information from the populated engine to update the field list.
Declaration
public object PivotFieldList { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An object containing the updated field list information. |
PivotValues
Defines the updated pivot table cell information from the populated engine to update the pivot table.
Declaration
public Matrix<Matrix<AxisSet>> PivotValues { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.Blazor.PivotView.Matrix<Syncfusion.Blazor.PivotView.Matrix<AxisSet>> | A Matrix object that represents the updated pivot table cell information. |