Playground
Build a chart from scratch. Edit the JSON, switch themes, copy the result.
1{
2 "version": "2026-03-20",
3 "format": "svg",
4 "theme": "editorial",
5 "title": "Monthly Revenue",
6 "subtitle": "SaaS ARR, 2025 (k$)",
7 "y": {
8 "label": "Revenue (k$)"
9 },
10 "marks": [
11 {
12 "type": "barY"
13 }
14 ],
15 "data": [
16 {
17 "x": "Jan",
18 "y": 42
19 },
20 {
21 "x": "Feb",
22 "y": 38
23 },
24 {
25 "x": "Mar",
26 "y": 55
27 },
28 {
29 "x": "Apr",
30 "y": 47
31 },
32 {
33 "x": "May",
34 "y": 63
35 },
36 {
37 "x": "Jun",
38 "y": 58
39 }
40 ]
41}