Skip to main content
Tab

ASPxVerticalGridSummaryItem Class

Represents a summary item.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class ASPxVerticalGridSummaryItem :
    ASPxSummaryItemBase

Remarks

The ASPxVerticalGrid allows you to display brief information about records. For instance, you can display the number of records or the maximum value, etc. This is called a summary. Summaries are represented by the ASPxVerticalGridSummaryItem objects.

The ASPxVerticalGrid supports total summaries. These are aggregate function values calculated over all the records within the ASPxVerticalGrid and displayed within the summary panel. Total summaries are stored within the ASPxVerticalGrid.TotalSummary collection.

For a summary item, the following two properties must be specified.

<dx:ASPxVerticalGridSummaryItem FieldName="Total" SummaryType="Sum"/>

The summary item above summarizes the ‘Total’ field values within all records and displays the sum in the summary panel.

To learn more, see Data Summaries.

Implements

DevExpress.Data.Summary.ISummaryItem

Inheritance

See Also