Class AggregateEventArgs
The aggregate event arguments provide the necessary information on each pivot value cell framing in the pivot engine for pivot table render.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class AggregateEventArgs
Constructors
AggregateEventArgs()
Declaration
public AggregateEventArgs()
Properties
AggregateType
Defines the current aggregate type of the value cell.
Declaration
[JsonPropertyName("aggregateType")]
[JsonConverter(typeof(JsonStringEnumConverter))]
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
[JsonPropertyName("skipFormatting")]
public bool AllowFormatting { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
CellSets
Defines the actual data source collection that used to aggregate the value of the current cell.
Declaration
[JsonPropertyName("cellSets")]
public object CellSets { get; set; }
Property Value
| Type | Description |
|---|---|
| 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
[JsonPropertyName("column")]
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
[JsonPropertyName("columnCellType")]
public string ColumnCellType { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
FieldName
Defines the field name of the value cell.
Declaration
[JsonPropertyName("fieldName")]
public string FieldName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
Row
Defines the row header information of the value cell.
Declaration
[JsonPropertyName("row")]
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
[JsonPropertyName("rowCellType")]
public string RowCellType { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
Value
Defines the aggregate cell value of the current cell.
Declaration
[JsonPropertyName("value")]
public double? Value { get; set; }
Property Value
| Type | Description |
|---|---|
| double? | A nullable double value representing the aggregate cell value of the current cell. |