New to Kendo UI for Vue? Start a free 30-day trial
Aggregates
Updated on Aug 14, 2026
The Kendo UI for Vue Data Grid displays aggregate values for grouped data in group footer rows.
To group Grid data, use the group and groupable props.
To display aggregates in group footer rows:
- Add aggregate descriptors to the
groupstate. - Set the
footeroption ofGridGroupableSettingsto display group footer rows. - Process the data with the aggregate descriptors and provide a group-footer cell template that renders the aggregate values.
The following example demonstrates how to configure the Grid to display aggregate values (total, average, min, and max) in the group footer rows by setting up cell rendering logic for grouped data.
Loading ...