-
Notifications
You must be signed in to change notification settings - Fork 3
/
echarts-pieData.html
executable file
·84 lines (84 loc) · 1.42 KB
/
echarts-pieData.html
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
{
"tooltip": {
"trigger": "item",
"formatter": "{a} <br/>{b} : {c} ({d}%)"
},
"legend": {
"orient": "vertical",
"x": "left",
"data": [
"优秀党员",
"困难党员",
"一般党员",
"劳模党员",
"党员干部"
]
},
"toolbox": {
"show": true,
"feature": {
"mark": {
"show": true
},
"dataView": {
"show": true,
"readOnly": false
},
"magicType": {
"show": true,
"type": [
"pie",
"funnel"
],
"option": {
"funnel": {
"x": "25%",
"width": "50%",
"funnelAlign": "left",
"max": 1548
}
}
},
"restore": {
"show": true
},
"saveAsImage": {
"show": true
}
}
},
"calculable": true,
"series": [
{
"name": "访问来源",
"type": "pie",
"radius": "55%",
"center": [
"50%",
"60%"
],
"data": [
{
"value": 35,
"name": "优秀党员"
},
{
"value": 69,
"name": "困难党员"
},
{
"value": 375,
"name": "一般党员"
},
{
"value": 30,
"name": "劳模党员"
},
{
"value": 4,
"name": "党员干部"
}
]
}
]
}