Lattice Grid Buy a licence

demo D173

Brushing a time range

Drag a range on the chart and the grid narrows to it

brush: true

Building…
Loading a live grid…

The configuration

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.27.0/lattice-grid.min.css">
<style>
  #chart { height: 300px; }
  #grid { margin-top: 14px; }
  #grid > div { height: 340px; }
</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.27.0/lattice-grid.esm.min.js';
  import createLatticeGrid from 'https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.27.0/modules/vue.esm.min.js';
  import { createChart } from 'https://cdn.jsdelivr.net/npm/@toclocoinc/lattice-grid@1.27.0/modules/charts.esm.min.js';

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

  Vue.createApp({
    components: { LatticeGrid },
    data() {
      return {
        config: {
          rowKey: 'id',
          columns: [
            { field: 'date', title: 'Date', type: 'dateString', layout: { pin: 'start', width: 150 } },
            { field: 'price', title: 'Price', type: 'number', format: { decimals: 2 } },
            { field: 'volume', title: 'Volume', type: 'number', format: { notation: 'compact' } },
          ],
          rows,  // one row a day: date, price, volume
        },
      };
    },
    mounted() {
      // The component exposes the live grid via a template ref, which the chart draws from.
      const grid = this.$refs.grid.grid();
      // brush lets a reader drag a range across the chart to narrow the grid to those days.
      createChart({ grid, container: '#chart', type: 'line', x: 'date', y: 'price', brush: true, title: 'Price over time (brush to filter)' });
    },
    template: `
      <div id="chart"></div>
      <div id="grid"><lattice-grid ref="grid" v-bind="config" /></div>
    `,
  }).mount('#app');
</script>