Class SummaryWrapperModel
Summary wrapper model class contains the logic for computing the summary values of the SfDataGrid in a optimized way.
Inheritance
System.Object
SummaryWrapperModel
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.Data
Assembly: Syncfusion.Data.WinForms.dll
Syntax
public class SummaryWrapperModel
Constructors
SummaryWrapperModel()
Declaration
public SummaryWrapperModel()
Properties
Average
Gets or sets the average of the values in the grouped column in the group.
Declaration
public double Average { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The average of the values in the grouped column in the group. |
Count
Gets or sets the number of items in the group.
Declaration
public int Count { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The number of items in the group. |
Max
Gets or sets the maximum value of the grouped column in the group.
Declaration
public double Max { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The maximum value of the grouped column in the group. |
Min
Gets or sets the minimum value of the grouped column in the group.
Declaration
public double Min { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The minimum value of the grouped column in the group. |
Sum
Gets or sets the sum of the values of the grouped column in the group.
Declaration
public double Sum { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The sum of the values of the grouped column in the group. |