demo D68
Your own total function
A weighted mean or a median, and why it re-reduces
total: (values, ctx) => …
The configuration
import * as ng from '@angular/core';
import { Component } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import { createGrid } from '@toclocoinc/lattice-grid';
import '@toclocoinc/lattice-grid/css';
import createLatticeGrid from '@toclocoinc/lattice-grid/modules/angular';
const { LatticeGridComponent } = createLatticeGrid({ ng, createGrid });
// A reduction the built-in set cannot express is a function on the column. It
// is handed the column's values for the group being reduced, and called again
// for the grand total, so the same summary sits on every group and the foot.
const median = (values) => {
const nums = values.filter((v) => typeof v === 'number' && Number.isFinite(v)).sort((a, b) => a - b);
if (!nums.length) return null;
const mid = nums.length >> 1;
return nums.length % 2 ? nums[mid] : (nums[mid - 1] + nums[mid]) / 2;
};
const p95 = (values) => {
const nums = values.filter((v) => typeof v === 'number' && Number.isFinite(v)).sort((a, b) => a - b);
if (!nums.length) return null;
return nums[Math.min(nums.length - 1, Math.floor(nums.length * 0.95))];
};
// A mean weighted by the row's own value, which is as far as a reduction can
// go: it sees one column's values, not the rows.
const weightedMean = (values) => {
let weight = 0, sum = 0;
for (const v of values) {
if (typeof v !== 'number' || !Number.isFinite(v)) continue;
const w = Math.abs(v);
weight += w;
sum += v * w;
}
return weight ? sum / weight : null;
};
const usd = { style: 'currency', currency: 'USD', decimals: 2 };
const columns = [
{ field: 'account', title: 'Account', filter: { type: 'set' }, group: { enabled: true, index: 0 } },
{ field: 'service', title: 'Service', filter: { type: 'set' } },
{ field: 'cost', title: 'Monthly cost', type: 'number', layout: { width: 170 }, format: usd, total: 'sum' },
// Three columns read the same field, so the extra two carry their own id.
{ id: 'costMedian', field: 'cost', title: 'Median cost', type: 'number', layout: { width: 160 }, format: usd, total: median },
{ id: 'costP95', field: 'cost', title: 'p95 cost', type: 'number', layout: { width: 150 }, format: usd, total: p95 },
{ field: 'change', title: 'Weighted change', type: 'number', layout: { width: 180 },
format: { style: 'percent', decimals: 2 }, total: weightedMean },
];
const rows = [/* cloud cost rows, one object per resource */];
@Component({
selector: 'app-root',
standalone: true,
imports: [LatticeGridComponent],
template: '<lattice-grid [config]="grid" style="display:block;height:540px"></lattice-grid>',
})
export class AppComponent {
grid = {
rowKey: 'id',
grandTotalRow: 'bottom',
toolPanel: { side: 'left', panels: ['columns', 'filters', 'views', 'quick'],
actions: ['undo', 'redo', 'export', 'restore', 'maximise'], exportName: 'lattice-demo' },
columns: columns,
rows: rows,
};
}
bootstrapApplication(AppComponent);
Writing a custom total function for weighted means and medians
The built-in aggregations, sum, average, min, max, and count, cover most footers, but a weighted mean, a median, or a percentile needs its own logic, and Lattice Grid exposes that through the total column option as a function: total: (values, ctx) => …. A developer reaches for this whenever a plain average would misrepresent the data, such as an order value weighted by quantity, or a latency column where the median is a more honest summary than the mean because a handful of slow requests would skew it. The function receives the array of values in scope, group or grand total, plus a context object carrying the row data for that scope, so a weighted mean can divide a weighted sum by a total weight drawn from a second column. This is also where “why it re-reduces” matters: a custom total cannot be built incrementally from a parent and a delta the way sum can, so Lattice Grid recomputes it from the full value set on every change to that scope rather than adjusting a running figure. For a JavaScript data grid handling frequent updates, that recomputation is bounded to the rows within the affected group, not the whole dataset, so a custom median on a group of a few hundred rows stays cheap while other groups update independently.
How do I calculate a weighted average in a grid footer?
Set the column’s total to a function, total: (values, ctx) => …, rather than the string 'average'. Inside it, use ctx to reach the weighting column’s values for the same rows, multiply each value by its weight, sum the products, and divide by the sum of weights. Lattice Grid calls this function for every group footer and grand total row that includes the column.