Lattice Grid Buy a licence

demo D185

Shadow columns: rank and movement

Rank, percentile and places moved; sort by places moved for live top movers

shadow: { of, kind: 'rankChange' }

Building…
Loading a live grid…

The configuration

import * as ng from '@angular/core';
import { Component } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import { createGrid } from '@toclocoinc/lattice-grid';
import '@toclocoinc/lattice-grid/css';
import createLatticeGrid from '@toclocoinc/lattice-grid/modules/angular';

const { LatticeGridComponent } = createLatticeGrid({ ng, createGrid });

const columns = [
  { field: 'symbol', title: 'Symbol', layout: { pin: 'start', width: 120 } },
  { field: 'price', title: 'Price', type: 'number' },
  { id: 'rank',  title: 'Rank', shadow: { of: 'price', kind: 'rank' }, type: 'number' },
  // rankChange is places climbed since the baseline: the top-movers column.
  { id: 'moved', title: 'Places moved', shadow: { of: 'price', kind: 'rankChange' }, type: 'number', format: { signed: true } },
  { id: 'pct',   title: 'Percentile', shadow: { of: 'price', kind: 'percentile' }, type: 'number' },
];

const rows = [/* a live price book */];



@Component({
  selector: 'app-root',
  standalone: true,
  imports: [LatticeGridComponent],
  template: '<lattice-grid [config]="grid" style="display:block;height:460px"></lattice-grid>',
})
export class AppComponent {
  grid = {
    rowKey: 'id',
    highlightOnChange: { duration: 500 },
    state: { sort: [{ col: 'moved', dir: 'desc' }] },
    columns: columns,
    rows: rows,
  };
}

bootstrapApplication(AppComponent);