ExamplesToggle debug dataToggle debug dataShow fun debugging information. What are all these numbers? File a bug ticket to find out!Open on CodeSandboxindex.tsdata.jsonimport canvasDatagrid from 'canvas-datagrid'; import data from '/data.json'; const app = document.getElementById('app'); const gridElement = document.createElement('div'); const grid = canvasDatagrid({ parentNode: gridElement, data, debug: true, }); app.append(gridElement);