aspnetbootstrap-117789-grid-view-data-summaries-group-summary.md
The group summary represents the value of the aggregate function calculated over all data rows within a group. Group summaries are displayed within group rows or group footer cells.
Group summaries are represented by the ASPxSummaryItem objects. Bootstrap Grid View stores its group summaries within the ASPxGridView.GroupSummary collection. To manage this collection at design time, you can use the Edit Form as shown above.
The ASPxSummaryItem object provides two properties allowing you to determine the location to display the summary.
To obtain group summary values, use the following methods.
| Method | Description |
|---|---|
| ASPxGridView.GetGroupRowSummaryText | Returns the summary text displayed within the specified group row. |
| ASPxGridView.GetGroupSummaryValue | Returns a summary value calculated against the specified group of rows. |
| ASPxSummaryItem.GetGroupRowDisplayText | Formats the specified value according to the current group row summary item’s format settings. |
| ASPxGridViewSettings.ShowGroupFooter | Specifies the ASPxGridView group footers visibility. |
| ASPxSummaryItem.GetGroupFooterDisplayText | Formats the specified value according to the current total summary item’s format settings, when the summary is displayed within group row footers. |
This example shows how to create and customize a group summary in code.
ASPxSummaryItem groupSummary = new ASPxSummaryItem();
groupSummary.FieldName = "Budget";
groupSummary.SummaryType = SummaryItemType.Max;
BootstrapGridView1.GroupSummary.Add(groupSummary);
Dim groupSummary As ASPxSummaryItem = New ASPxSummaryItem()
groupSummary.FieldName = "Budget"
groupSummary.SummaryType = SummaryItemType.Max
BootstrapGridView1.GroupSummary.Add(groupSummary)