Lattice Grid Buy a licence

demo D187

Marking a baseline

"Mark all" resets every delta to now

grid.statistics.rebase(col)

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 { margin-top: 8px; }
  #grid > div { height: 440px; }
</style>
<div id="app"></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',
          columns: [
            { field: 'symbol', title: 'Symbol', layout: { pin: 'start', width: 120 } },
            { field: 'price', title: 'Price', type: 'number' },
            { id: 'delta', title: 'Change', shadow: { of: 'price', kind: 'delta' }, type: 'number', format: { signed: true } },
            { id: 'first', title: 'Baseline', shadow: { of: 'price', kind: 'firstValue' }, type: 'number' },
          ],
          rows,  // one symbol per row
        },
      };
    },
    methods: {
      // rebase moves every baseline to the current value, so the deltas start again.
      markAll() {
        this.$refs.grid.grid().statistics.rebase('price');
      },
    },
    template: `
      <div>
        <button @click="markAll">Mark all</button>
        <div id="grid"><lattice-grid ref="grid" v-bind="config" /></div>
      </div>
    `,
  }).mount('#app');
</script>