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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
```echarts
{
"title": [
{"text": "Timeline Chart", "left": "5%", "top": "5%"},
{"text": "Pie Chart", "left": "55%", "top": "5%"},
{"text": "Scatter Plot", "left": "5%", "top": "55%"},
{"text": "Tangential Polar Chart", "left": "55%", "top": "55%"}
],
"tooltip": {"trigger": "item"},
"legend": {
"orient": "vertical",
"left": "left",
"data": ["Series A", "Series B", "Series C"]
},
"grid": [
{"left": "5%", "top": "15%", "width": "40%", "height": "35%"},
{"left": "55%", "top": "15%", "width": "40%", "height": "35%"},
{"left": "5%", "top": "55%", "width": "40%", "height": "35%"},
{"left": "55%", "top": "55%", "width": "40%", "height": "35%"}
],
"xAxis": [
{"type": "time", "gridIndex": 0},
{"type": "value", "gridIndex": 2}
],
"yAxis": [
{"type": "value", "gridIndex": 0},
{"type": "value", "gridIndex": 2}
],
"angleAxis": [{"type": "value", "startAngle": 0, "polarIndex": 0}],
"radiusAxis": [{"polarIndex": 0}],
"polar": [{"center": ["75%", "80%"], "radius": "30%", "gridIndex": 3}],
"dataset": {
"source": {
"timelineA": [["2023-10-01", 10], ["2023-10-02", 20], ["2023-10-03", 15], ["2023-10-04", 25]],
"timelineB": [["2023-10-01", 5], ["2023-10-02", 15], ["2023-10-03", 10], ["2023-10-04", 20]],
"scatterA": [[1, 10], [2, 20], [3, 15], [4, 25]],
"scatterB": [[1, 5], [2, 15], [3, 10], [4, 20]],
"pie": [
{"value": 335, "name": "Series A"},
{"value": 310, "name": "Series B"},
{"value": 274, "name": "Series C"}
],
"polarA": [1, 2, 3],
"polarB": [4, 5, 6]
}
},
"series": [
{
"name": "Series A",
"type": "line",
"xAxisIndex": 0,
"yAxisIndex": 0,
"data": [["2023-10-01", 10], ["2023-10-02", 20], ["2023-10-03", 15], ["2023-10-04", 25]]
},
{
"name": "Series B",
"type": "line",
"xAxisIndex": 0,
"yAxisIndex": 0,
"data": [["2023-10-01", 5], ["2023-10-02", 15], ["2023-10-03", 10], ["2023-10-04", 20]]
},
{
"name": "Pie Chart",
"type": "pie",
"radius": "50%",
"center": ["75%", "30%"],
"data": [
{"value": 335, "name": "Series A"},
{"value": 310, "name": "Series B"},
{"value": 274, "name": "Series C"}
]
},
{
"name": "Series A",
"type": "scatter",
"xAxisIndex": 1,
"yAxisIndex": 1,
"data": [[1, 10], [2, 20], [3, 15], [4, 25]]
},
{
"name": "Series B",
"type": "scatter",
"xAxisIndex": 1,
"yAxisIndex": 1,
"data": [[1, 5], [2, 15], [3, 10], [4, 20]]
},
{
"name": "Series A",
"type": "bar",
"polarIndex": 0,
"data": [1, 2, 3],
"coordinateSystem": "polar"
},
{
"name": "Series B",
"type": "bar",
"polarIndex": 0,
"data": [4, 5, 6],
"coordinateSystem": "polar"
}
]
}
|