Class AggregateEventArgs
The aggregate event arguments provide the necessary information on each pivot value cell framing in the pivot engine for pivot table render.
Inheritance
System.Object
AggregateEventArgs
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class AggregateEventArgs : Object
Constructors
AggregateEventArgs()
Declaration
public AggregateEventArgs()
Properties
AggregateType
Defines the current aggregate type of the value cell.
Declaration
public SummaryTypes AggregateType { get; set; }
Property Value
Type | Description |
---|---|
SummaryTypes |
AllowFormatting
Defines an option to restrict the number formating of the current value cell.
Declaration
public bool AllowFormatting { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CellSets
Defines the actual data source collection that used to aggregate the value of the current cell.
Declaration
public object CellSets { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Column
Defines the column header information of the value cell.
Declaration
public AxisSet Column { get; set; }
Property Value
Type | Description |
---|---|
AxisSet |
ColumnCellType
Defines wheather the column header cell type is header or sub-total or grand-total.
Declaration
public string ColumnCellType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FieldName
Defines the field name of the value cell.
Declaration
public string FieldName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Row
Defines the row header information of the value cell.
Declaration
public AxisSet Row { get; set; }
Property Value
Type | Description |
---|---|
AxisSet |
RowCellType
Defines wheather the row header cell type is header or sub-total or grand-total.
Declaration
public string RowCellType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
Defines the aggregate cell value of the current cell.
Declaration
public Nullable<double> Value { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |