demo D195
Capability against a tolerance
Cp, Cpk, Pp and Ppk from one column declaration
grid.statistics.capability(col, { baseline })
Loading a live grid…
The configuration
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.28.0/lattice-grid.min.css">
<script type="module">
import { defineLatticeGrid } from 'https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.28.0/modules/webcomponent.esm.js';
defineLatticeGrid();
</script>
<lattice-grid row-key="id" style="display: block; height: 440px"></lattice-grid>
<pre id="out" style="margin-top: 12px"></pre>
<script type="module">
const el = document.querySelector('lattice-grid');
el.config = {
columns: [
{ field: 'part', title: 'Part', layout: { pin: 'start', width: 110 } },
// The spec declares the tolerance; capability reads it.
{ field: 'bore', title: 'Bore', type: 'number', total: 'median',
spec: { lower: 9.5, upper: 10.8, target: 10 } },
],
};
el.rows = rows; // machined bore measurements
// el.grid is the live grid inside the element.
const out = document.getElementById('out');
out.textContent = JSON.stringify(el.grid.statistics.capability('bore', { baseline: 20 }), null, 2);
</script>