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
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.EJ2.Pivot
Assembly: Syncfusion.EJ2.Pivot.dll
Syntax
public class AggregateEventArgs
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 |
---|
SummaryTypes |
AllowFormatting
Defines an option to restrict the number formating of the current value cell.
Declaration
public bool AllowFormatting { get; set; }
Property Value
Type |
---|
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 |
---|
System.Object |
Column
Defines the column header information of the value cell.
Declaration
public AxisSet Column { get; set; }
Property Value
Type |
---|
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 |
---|
System.String |
FieldName
Defines the field name of the value cell.
Declaration
public string FieldName { get; set; }
Property Value
Type |
---|
System.String |
Row
Defines the row header information of the value cell.
Declaration
public AxisSet Row { get; set; }
Property Value
Type |
---|
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 |
---|
System.String |
Value
Defines the aggregate cell value of the current cell.
Declaration
public double? Value { get; set; }
Property Value
Type |
---|
System.Nullable<System.Double> |