SummaryType Enum
Lists values that specify the aggregate function types.
Namespace: DevExpress.Maui.DataGrid
Assembly: DevExpress.Maui.DataGrid.dll
Declaration
public enum SummaryType
Members
Name | Description |
---|---|
None
|
Disables summary value calculation. |
Sum
|
The sum of values in a group of rows or entire column. |
Min
|
The minimum value in a group of rows or entire column. |
Max
|
The maximum value in a group of rows or entire column. |
Count
|
The number of records in a group or entire column. |
Average
|
The average value of group of rows or entire column. |
Custom
|
Specifies whether data summaries should be calculated according to a custom rule specified in the DataGridView.CalculateCustomSummary event handler. |
Related API Members
The following properties accept/return SummaryType values:
Remarks
Assign a SummaryType enumeration’s value to the GridColumnSummary.Type property to specify the aggregate function to calculate summary values.