Status bar

The status bar is the strip under the grid that shows live aggregates of the selected cell range - count, sum, average, min, max - the way Excel does at the bottom-right when you select a block of numbers.

<SvGrid {data} {columns} {features} enableCellSelection statusBar />

It needs enableCellSelection (the bar aggregates the selected rectangle). Drag a range across numeric cells and the bar updates instantly.

Choosing aggregates

statusBar={true} shows the default set (count, sum, avg, min, max). Pass an object to pick which:

<SvGrid enableCellSelection statusBar={{ aggregates: ['count', 'sum', 'avg'] }} />
Aggregate Meaning
count Cells in the selection (non-group).
numericCount How many of those hold a finite number.
sum Sum of the numeric cells.
avg Mean of the numeric cells.
min / max Smallest / largest numeric value.

Behavior

See the live Status bar demo.