Documentation
Chart Columns
Render number arrays as inline line/area or bar charts — no extra chart library required.
Line / area chart
Set type: "lineAreaChart". Cell values must be number arrays — good for trends over time.
TypeScript
{accessor: "monthlySales",label: "Sales (12mo)",type: "lineAreaChart",width: 150,align: "center",}
Bar chart
Set type: "barChart" for discrete comparisons (quarters, weeks, categories).
TypeScript
{accessor: "quarterlyRevenue",label: "Quarterly",type: "barChart",width: 140,align: "center",}
Customize with chartOptions
Scale, size, and colors via chartOptions.
TypeScript
{accessor: "cpuHistory",label: "CPU",type: "lineAreaChart",width: 150,chartOptions: {min: 0,max: 100,color: "#3b82f6",height: 35,},}
Copy and paste
Copy produces comma-separated values (e.g. 10, 15, 12). Paste parses that format back into a number array. Empty cells clear to [].
Example
Select a chart cell and copy (Ctrl/⌘+C). Use Code or StackBlitz for the full example.