mobilecontrols-devexpress-dot-xamarinforms-dot-datagrid-d917b5cd.md
Lists values that specify the aggregate function types.
Namespace : DevExpress.XamarinForms.DataGrid
Assembly : DevExpress.XamarinForms.Grid.dll
NuGet Package : DevExpress.XamarinForms.Grid
public enum SummaryType
| Name | Description |
|---|---|
None |
Disables summary value calculation.
|
| Sum |
The sum of all values in a column.
|
| Min |
The minimum value in a column.
|
| Max |
The maximum value in a column.
|
| Count |
The record count.
|
| Average |
The average value of a column.
|
| Custom |
Specifies whether data summaries should be calculated according to a custom rule specified in the DataGridView.CalculateCustomSummary event handler.
|
The following properties accept/return SummaryType values:
Assign a SummaryType enumeration’s value to the GridColumnSummary.Type property to specify the aggregate function to calculate summary values.
See Also