New to Kendo UI for Vue? Start a free 30-day trial
Selection Aggregates
Updated on Aug 14, 2026
The Grid enables you to select cells and calculate metrics based on the selected values.
Use the built-in StatusBar to display the calculated metrics at the bottom of the Grid, or render the calculated data in custom elements.
The Grid supports the following built-in aggregation for all selected cells:
max—the greatest number. Valid for numeric fields.min—the smallest number. Valid for numeric fields.sum—the sum of all numbers. Valid for numeric fields.average—the average of all numbers. Valid for numeric fields.count—the total number of cells.earliest—the earliest date. Valid forDatefields.latest—the latest date. Valid forDatefields.isTrue—the total number of boolean fields withtruevalue.isFalse—the total number of boolean fields withfalsevalue.
To display selection aggregates, enable multiple-cell selection with the selectable prop and handle the selectionchange event. Use getStatusData to calculate the data that the StatusBar component renders.
Loading ...