demo D188
Rules that describe the data
The outliers, found in the data, beside a threshold you typed
when: { op: 'outlier' }
Loading a live grid…
The configuration
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.13.0/lattice-grid.min.css">
<script src="https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.13.0/lattice-grid.min.js"></script>
<div id="grid" style="height: 500px"></div>
<script>
const grid = LatticeGrid.createGrid(document.getElementById('grid'), {
rowKey: 'id',
columnDefaults: { filter: true },
// Two columns of the same field: a threshold you type, and a rule that
// finds the outliers in the data itself.
formatting: {
charge: [{ when: { op: 'gt', value: 3000 }, style: { background: '#fff4e5' } }],
'charge-outlier': [{ when: { op: 'outlier' }, style: { background: '#fbeceb' } }],
},
columns: [
{ field: 'circuit', title: 'Circuit', layout: { pin: 'start', width: 180 } },
{ field: 'region', title: 'Region', filter: { type: 'set' } },
{ field: 'charge', title: 'Charge · gt 3000', type: 'number' },
{ field: 'charge', id: 'charge-outlier', title: 'Charge · outlier', type: 'number' },
],
rows,
});
</script>