demo D255
Dumbbell chart in Angular
Two dots joined by a bar per row, so the distance from before to after is the picture
type: 'dumbbell', x, start, end
This draws two dots joined by a bar per row, so the distance from a before value to an after value is the picture. It shows change per item at a glance, so the size of each move reads as the length of its bar.
This is the Angular version. A standalone component takes the whole configuration through one config input, surfaces grid events as outputs, and exposes the live grid on a getter for anything the inputs do not cover.
The configuration
import { Component, ViewChild, AfterViewInit } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import { createGrid } from '@toclocoinc/lattice-grid';
import '@toclocoinc/lattice-grid/css';
import { createChart } from '@toclocoinc/lattice-grid/modules/charts';
import '@toclocoinc/lattice-grid/modules/chart-dumbbell'; // opt in to the dumbbell type
import { LatticeGridComponent, provideLattice } from '@toclocoinc/lattice-grid/angular';
@Component({
selector: 'app-root',
standalone: true,
imports: [LatticeGridComponent],
template:
'<div id="chart" style="height:320px"></div>' +
'<lattice-grid [config]="grid" style="display:block;height:320px;margin-top:14px"></lattice-grid>',
})
export class AppComponent implements AfterViewInit {
@ViewChild(LatticeGridComponent) gridRef!: LatticeGridComponent;
grid = {
rowKey: 'id',
columns: [
{ field: 'route', title: 'Route' },
{ field: 'before', title: 'Before (ms)', type: 'number', total: 'avg' },
{ field: 'after', title: 'After (ms)', type: 'number', total: 'avg' },
],
rows: [/* one row a route: route, before, after */],
};
ngAfterViewInit() {
createChart({ grid: this.gridRef.grid, container: '#chart', type: 'dumbbell', x: 'route', start: 'before', end: 'after', title: 'Load time, before and after' });
}
}
bootstrapApplication(AppComponent, {
providers: [provideLattice({ createGrid })],
});