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