Lattice Grid Buy a licence

demo D188

Rules that describe the data

The outliers, found in the data, beside a threshold you typed

when: { op: 'outlier' }

Building…
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">
<style>
  #grid > div { height: 500px; }
</style>
<div id="grid"></div>

<script type="module">
  import * as Vue from 'https://esm.sh/vue@3';
  import { createGrid } from 'https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.28.0/lattice-grid.esm.min.js';
  import createLatticeGrid from 'https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.28.0/modules/vue.esm.min.js';

  const LatticeGrid = createLatticeGrid({ vue: Vue, createGrid });

  Vue.createApp({
    components: { LatticeGrid },
    data() {
      return {
        config: {
          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,
        },
      };
    },
    template: '<lattice-grid v-bind="config" />',
  }).mount('#grid');
</script>