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
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 | A SummaryTypes value that represents the current aggregate type of the value cell. |
AllowFormatting
Defines an option to restrict the number formatting 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 | A data source collection that is used to aggregate the value of the current cell. |
Column
Defines the column header information of the value cell.
Declaration
public AxisSet Column { get; set; }
Property Value
Type | Description |
---|---|
AxisSet | An instance of the AxisSet class that represents the column header information of the value cell. |
ColumnCellType
Defines whether 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 | Accepts the string value. |
FieldName
Defines the field name of the value cell.
Declaration
public string FieldName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Row
Defines the row header information of the value cell.
Declaration
public AxisSet Row { get; set; }
Property Value
Type | Description |
---|---|
AxisSet | An instance of the AxisSet class that represents the row header information of the value cell. |
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 | Accepts the string value. |
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> | A nullable double value representing the aggregate cell value of the current cell. |