-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathradar.typ
35 lines (35 loc) · 917 Bytes
/
radar.typ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#set page(width: 200mm, height: 150mm, margin: 0mm)
#import "../typst-package/lib.typ" as echarm
#echarm.render(width: 100%, height: 100%, options: (
legend: (
top: "10%",
data: ("Allocated Budget", "Actual Spending")
),
radar: (
radius: "45%",
indicator: (
(name: "Sales", max: 6500),
(name: "Administration", max: 16000),
(name: "Information Technology", max: 30000),
(name: "Customer Support", max: 38000),
(name: "Development", max: 52000),
(name: "Marketing", max: 25000),
)
),
series: (
(
name: "Budget vs spending",
type: "radar",
data: (
(
name: "Allocated Budget",
value: (4200, 3000, 20000, 35000, 50000, 18000)
),
(
name: "Actual Spending",
value: (5000, 14000, 28000, 26000, 42000, 21000)
)
)
)
)
))