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": "Quarterly change",
  "source": "Example data",
  "categoryAxis": { "title": "Quarter" },
  "valueAxis": { "title": "Change", "format": "percent" },
  "data": [
    { "label": "First quarter", "value": 0.12 },
    { "label": "Second quarter", "value": -0.04 },
    { "label": "Third quarter with a deliberately long label", "value": 0.08 },
    { "label": "Fourth quarter", "value": 0.15 }
  ]
}