chartlet 0.1.0-alpha.3

Compile structured data into deterministic, accessible static charts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "schemaVersion": 1,
  "type": "bar",
  "orientation": "horizontal",
  "title": "Customer satisfaction by region",
  "description": "Satisfaction improved in every region from 2025 to 2026.",
  "source": "Example data",
  "categoryAxis": { "title": "Region" },
  "valueAxis": { "title": "Score out of 5", "format": "number" },
  "categories": ["North", "South", "East", "West"],
  "series": [
    { "name": "2025", "values": [4.1, 4.3, 3.9, 4.4] },
    { "name": "2026", "values": [4.3, 4.4, 4.1, 4.6] }
  ]
}