Skip to main content
A newer version of this page is available. .

How to: Create and Customize a Group Summary

This example shows how to create and customize a group summary in code.

ASPxSummaryItem groupSummary = new ASPxSummaryItem();
groupSummary.FieldName = "Budget";
groupSummary.SummaryType = SummaryItemType.Max;
ASPxGridView1.GroupSummary.Add(groupSummary);