旭日圖
# 18. 旭日圖
旭日圖(Sunburst) (opens new window)由多層的環形圖組成,在數據結構上,內圈是外圈的父節點。因此,它既能像餅圖一樣表現區域性和整體的佔比,又能像矩形樹圖一樣表現層級關係。
# 18.1. 引入相關檔案
旭日圖是 Apache EChartsTM 4.0 新增的圖表型別,從 CDN (opens new window) 引入完整版的 echarts.min.js (opens new window)
# 18.2. 最簡單的旭日圖
建立旭日圖需要在 series
配置項中聲明型別為 'sunburst'
的系列,並且以樹形結構聲明其 data
:
var option = {
series: {
type: 'sunburst',
data: [{
name: 'A',
value: 10,
children: [{
value: 3,
name: 'Aa'
}, {
value: 5,
name: 'Ab'
}]
}, {
name: 'B',
children: [{
name: 'Ba',
value: 4
}, {
name: 'Bb',
value: 2
}]
}, {
name: 'C',
value: 3
}]
}
};
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
得到以下結果:
圖表來源:https://echarts.apache.org/examples/zh/editor.html?c=doc-example/sunburst-simple (opens new window)
FastWeb TUgEChart示例:
如需在FastWeb中的TUgEChart中實現上述效果,則修改其Options
屬性,使用下列配置:
option = {
series: {
type: 'sunburst',
data: [{
name: 'A',
value: 10,
children: [{
value: 3,
name: 'Aa'
}, {
value: 5,
name: 'Ab'
}]
}, {
name: 'B',
children: [{
name: 'Ba',
value: 4
}, {
name: 'Bb',
value: 2
}]
}, {
name: 'C',
value: 3
}]
}
};
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
- FastWeb TUgURLFrame示例:
如需在FastWeb中的TUgURLFrame中實現上述效果,則修改其HTML
屬性,使用下列內容:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ECharts</title>
<!-- 引入 echarts.js -->
<script src="https://cdn.staticfile.org/echarts/5.1.2/echarts.min.js"></script>
</head>
<body>
<!-- 為ECharts準備一個具備大小(寬高)的Dom -->
<div id="main" style="width: 700px;height:400px;"></div>
<script type="text/javascript">
// 基於準備好的dom,初始化echarts實體
var myChart = echarts.init(document.getElementById('main'));
var option;
option = {
series: {
type: 'sunburst',
data: [{
name: 'A',
value: 10,
children: [{
value: 3,
name: 'Aa'
}, {
value: 5,
name: 'Ab'
}]
}, {
name: 'B',
children: [{
name: 'Ba',
value: 4
}, {
name: 'Bb',
value: 2
}]
}, {
name: 'C',
value: 3
}]
}
};
// 使用剛指定的配置項和數據顯示圖表。
myChart.setOption(option);
</script>
</body>
</html>
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
# 18.3. 顏色等樣式調整
預設情況下會使用全域性調色盤 color 分配最內層的顏色,其餘層則與其父元素同色。在旭日圖中,扇形塊的顏色有以下三種設定方式:
- 在 series.data.itemStyle 中設定每個扇形塊的樣式;
- 在 series.levels.itemStyle 中設定每一層的樣式;
- 在 series.itemStyle 中設定整個旭日圖的樣式。
上述三者的優先順序是從高到低的,也就是說,配置了 series.data.itemStyle
的扇形塊將會覆蓋 series.levels.itemStyle
和 series.itemStyle
的設定。
下面,我們將整體的顏色設為灰色 '#aaa'
,將最內層的顏色設為藍色 'blue'
,將 Aa
、B
這兩塊設為紅色 'red'
。
var option = {
series: {
type: 'sunburst',
data: [{
name: 'A',
value: 10,
children: [{
value: 3,
name: 'Aa',
itemStyle: {
color: 'red'
}
}, {
value: 5,
name: 'Ab'
}]
}, {
name: 'B',
children: [{
name: 'Ba',
value: 4
}, {
name: 'Bb',
value: 2
}],
itemStyle: {
color: 'red'
}
}, {
name: 'C',
value: 3
}],
itemStyle: {
color: '#aaa'
},
levels: [{
// 留給數據下鉆的節點屬性
}, {
itemStyle: {
color: 'blue'
}
}]
}
};
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
效果為:
圖表來源:https://echarts.apache.org/examples/zh/editor.html?c=doc-example/sunburst-color (opens new window)
FastWeb TUgEChart示例:
如需在FastWeb中的TUgEChart中實現上述效果,則修改其Options
屬性,使用下列配置:
option = {
series: {
type: 'sunburst',
data: [{
name: 'A',
value: 10,
children: [{
value: 3,
name: 'Aa',
itemStyle: {
color: 'red'
}
}, {
value: 5,
name: 'Ab'
}]
}, {
name: 'B',
children: [{
name: 'Ba',
value: 4
}, {
name: 'Bb',
value: 2
}],
itemStyle: {
color: 'red'
}
}, {
name: 'C',
value: 3
}],
itemStyle: {
color: '#aaa'
},
levels: [{
// 留給數據下鉆的節點屬性
}, {
itemStyle: {
color: 'blue'
}
}]
}
};
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
- FastWeb TUgURLFrame示例:
如需在FastWeb中的TUgURLFrame中實現上述效果,則修改其HTML
屬性,使用下列內容:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ECharts</title>
<!-- 引入 echarts.js -->
<script src="https://cdn.staticfile.org/echarts/5.1.2/echarts.min.js"></script>
</head>
<body>
<!-- 為ECharts準備一個具備大小(寬高)的Dom -->
<div id="main" style="width: 700px;height:300px;"></div>
<script type="text/javascript">
// 基於準備好的dom,初始化echarts實體
var myChart = echarts.init(document.getElementById('main'));
var option;
option = {
series: {
type: 'sunburst',
data: [{
name: 'A',
value: 10,
children: [{
value: 3,
name: 'Aa',
itemStyle: {
color: 'red'
}
}, {
value: 5,
name: 'Ab'
}]
}, {
name: 'B',
children: [{
name: 'Ba',
value: 4
}, {
name: 'Bb',
value: 2
}],
itemStyle: {
color: 'red'
}
}, {
name: 'C',
value: 3
}],
itemStyle: {
color: '#aaa'
},
levels: [{
// 留給數據下鉆的節點屬性
}, {
itemStyle: {
color: 'blue'
}
}]
}
};
// 使用剛指定的配置項和數據顯示圖表。
myChart.setOption(option);
</script>
</body>
</html>
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
# 18.4. 按層配置樣式
旭日圖是一種有層次的結構,爲了方便同一層樣式的配置,我們提供了 levels 配置項。它是一個陣列,其中的第 0 項表示數據下鉆后返回上級的圖形,其後的每一項分別表示從圓心向外層的層級。
例如,假設我們沒有數據下鉆功能,並且希望將最內層的扇形塊的顏色設為紅色,文字設為藍色,可以這樣設定:
series: {
// ...
levels: [
{
// 留給數據下鉆點的空白配置
},
{
// 最靠內測的第一層
itemStyle: {
color: 'red'
},
label: {
color: 'blue'
}
},
{
// 第二層 ...
}
]
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
在實際使用的過程中,你會發現按層配置樣式是一個很常用的功能,能夠很大程度上提高配置的效率。
# 18.5. 數據下鉆
旭日圖預設支援數據下鉆,也就是說,當點選了扇形塊之後,將以該扇形塊的數據作為根節點,便於進一步瞭解該數據的細節。
圖表來源:https://echarts.apache.org/examples/zh/editor.html?c=sunburst-simple (opens new window)
FastWeb TUgURLFrame示例:
如需在FastWeb中的TUgURLFrame中實現上述效果,則修改其HTML
屬性,使用下列內容:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ECharts</title>
<!-- 引入 echarts.js -->
<script src="https://cdn.staticfile.org/echarts/5.1.2/echarts.min.js"></script>
</head>
<body>
<!-- 為ECharts準備一個具備大小(寬高)的Dom -->
<div id="main" style="width: 700px;height:500px;"></div>
<script type="text/javascript">
// 基於準備好的dom,初始化echarts實體
var myChart = echarts.init(document.getElementById('main'));
var option;
var data = [{
name: 'Grandpa',
children: [{
name: 'Uncle Leo',
value: 15,
children: [{
name: 'Cousin Jack',
value: 2
}, {
name: 'Cousin Mary',
value: 5,
children: [{
name: 'Jackson',
value: 2
}]
}, {
name: 'Cousin Ben',
value: 4
}]
}, {
name: 'Father',
value: 10,
children: [{
name: 'Me',
value: 5
}, {
name: 'Brother Peter',
value: 1
}]
}]
}, {
name: 'Nancy',
children: [{
name: 'Uncle Nike',
children: [{
name: 'Cousin Betty',
value: 1
}, {
name: 'Cousin Jenny',
value: 2
}]
}]
}];
option = {
series: {
type: 'sunburst',
// emphasis: {
// focus: 'ancestor'
// },
data: data,
radius: [0, '90%'],
label: {
rotate: 'radial'
}
}
};
// 使用剛指定的配置項和數據顯示圖表。
myChart.setOption(option);
</script>
</body>
</html>
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
當數據下鉆后,中間會出現一個用於返回上一層的圖形,該圖形的樣式可以通過 levels[0] 配置。
如果不需要數據下鉆功能,可以通過將 nodeClick 設定為 false
關閉;或者將其設為 'link'
,並將 data.link 設為點選扇形塊對應打開的鏈接。
# 18.6. 高亮相關扇形塊
旭日圖支援滑鼠移動到某扇形塊時,高亮相關數據塊的操作,可以通過設定 highlightPolicy,包括以下幾種高亮方式:
'descendant'
(預設值):高亮滑鼠移動所在扇形塊與其後代元素;'ancestor'
:高亮滑鼠所在扇形塊與其祖先元素;'self'
:僅高亮滑鼠所在扇形塊;'none'
:不會淡化(downplay)其他元素。
上面提到的「高亮」,對於滑鼠所在的扇形塊,會使用 emphasis
樣式;對於其他相關扇形塊,則會使用 highlight
樣式。通過這種方式,可以很方便地實現突出顯示相關數據的需求。
具體來說,對於配置項:
itemStyle: {
color: 'yellow',
borderWidth: 2,
emphasis: {
color: 'red'
},
highlight: {
color: 'orange'
},
downplay: {
color: '#ccc'
}
}
2
3
4
5
6
7
8
9
10
11
12
13
highlightPolicy
為 'descendant'
或 'ancestor'
的效果分別為:
# 18.7. 總結
上面的教程主要講述的是如何入門使用旭日圖,感興趣的使用者可以在 配置項手冊 檢視更完整的文件。在靈活應用這些配置項之後,就能做出豐富多彩的旭日圖了!
圖表來源:https://echarts.apache.org/examples/zh/editor.html?c=sunburst-book (opens new window)
FastWeb TUgURLFrame示例:
如需在FastWeb中的TUgURLFrame中實現上述效果,則修改其HTML
屬性,使用下列內容:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ECharts</title>
<!-- 引入 echarts.js -->
<script src="https://cdn.staticfile.org/echarts/5.1.2/echarts.min.js"></script>
</head>
<body>
<!-- 為ECharts準備一個具備大小(寬高)的Dom -->
<div id="main" style="width: 700px;height:600px;"></div>
<script type="text/javascript">
// 基於準備好的dom,初始化echarts實體
var myChart = echarts.init(document.getElementById('main'));
var option;
var colors = ['#FFAE57', '#FF7853', '#EA5151', '#CC3F57', '#9A2555'];
var bgColor = '#2E2733';
var itemStyle = {
star5: {
color: colors[0]
},
star4: {
color: colors[1]
},
star3: {
color: colors[2]
},
star2: {
color: colors[3]
}
};
var data = [{
name: '虛構',
itemStyle: {
color: colors[1]
},
children: [{
name: '小說',
children: [{
name: '5☆',
children: [{
name: '疼'
}, {
name: '慈悲'
}, {
name: '樓下的房客'
}]
}, {
name: '4☆',
children: [{
name: '虛無的十字架'
}, {
name: '無聲告白'
}, {
name: '童年的終結'
}]
}, {
name: '3☆',
children: [{
name: '瘋癲老人日記'
}]
}]
}, {
name: '其他',
children: [{
name: '5☆',
children: [{
name: '納博科夫短篇小說全集'
}]
}, {
name: '4☆',
children: [{
name: '安魂曲'
}, {
name: '人生拼圖版'
}]
}, {
name: '3☆',
children: [{
name: '比起愛你,我更需要你'
}]
}]
}]
}, {
name: '非虛構',
itemStyle: {
color: colors[2]
},
children: [{
name: '設計',
children: [{
name: '5☆',
children: [{
name: '無界面互動'
}]
}, {
name: '4☆',
children: [{
name: '數字繪圖的光照與渲染技術'
}, {
name: '日本建築解剖書'
}]
}, {
name: '3☆',
children: [{
name: '奇幻世界藝術\n&RPG地圖繪製講座'
}]
}]
}, {
name: '社科',
children: [{
name: '5☆',
children: [{
name: '痛點'
}]
}, {
name: '4☆',
children: [{
name: '卓有成效的管理者'
}, {
name: '進化'
}, {
name: '后物慾時代的來臨'
}]
}, {
name: '3☆',
children: [{
name: '瘋癲與文明'
}]
}]
}, {
name: '心理',
children: [{
name: '5☆',
children: [{
name: '我們時代的神經癥人格'
}]
}, {
name: '4☆',
children: [{
name: '皮格馬利翁效應'
}, {
name: '受傷的人'
}]
}, {
name: '3☆'
}, {
name: '2☆',
children: [{
name: '迷戀'
}]
}]
}, {
name: '居家',
children: [{
name: '4☆',
children: [{
name: '把房子住成家'
}, {
name: '只過必要生活'
}, {
name: '北歐簡約風格'
}]
}]
}, {
name: '繪本',
children: [{
name: '5☆',
children: [{
name: '設計詩'
}]
}, {
name: '4☆',
children: [{
name: '假如生活糊弄了你'
}, {
name: '博物學家的神秘動物圖鑑'
}]
}, {
name: '3☆',
children: [{
name: '方向'
}]
}]
}, {
name: '哲學',
children: [{
name: '4☆',
children: [{
name: '人生的智慧'
}]
}]
}, {
name: '技術',
children: [{
name: '5☆',
children: [{
name: '程式碼整潔之道'
}]
}, {
name: '4☆',
children: [{
name: 'Three.js 開發指南'
}]
}]
}]
}];
for (var j = 0; j < data.length; ++j) {
var level1 = data[j].children;
for (var i = 0; i < level1.length; ++i) {
var block = level1[i].children;
var bookScore = [];
var bookScoreId;
for (var star = 0; star < block.length; ++star) {
var style = (function (name) {
switch (name) {
case '5☆':
bookScoreId = 0;
return itemStyle.star5;
case '4☆':
bookScoreId = 1;
return itemStyle.star4;
case '3☆':
bookScoreId = 2;
return itemStyle.star3;
case '2☆':
bookScoreId = 3;
return itemStyle.star2;
}
})(block[star].name);
block[star].label = {
color: style.color,
downplay: {
opacity: 0.5
}
};
if (block[star].children) {
style = {
opacity: 1,
color: style.color
};
block[star].children.forEach(function (book) {
book.value = 1;
book.itemStyle = style;
book.label = {
color: style.color
};
var value = 1;
if (bookScoreId === 0 || bookScoreId === 3) {
value = 5;
}
if (bookScore[bookScoreId]) {
bookScore[bookScoreId].value += value;
}
else {
bookScore[bookScoreId] = {
color: colors[bookScoreId],
value: value
};
}
});
}
}
level1[i].itemStyle = {
color: data[j].itemStyle.color
};
}
}
option = {
backgroundColor: bgColor,
color: colors,
series: [{
type: 'sunburst',
center: ['50%', '48%'],
data: data,
sort: function (a, b) {
if (a.depth === 1) {
return b.getValue() - a.getValue();
}
else {
return a.dataIndex - b.dataIndex;
}
},
label: {
rotate: 'radial',
color: bgColor
},
itemStyle: {
borderColor: bgColor,
borderWidth: 2
},
levels: [{}, {
r0: 0,
r: 40,
label: {
rotate: 0
}
}, {
r0: 40,
r: 105
}, {
r0: 115,
r: 140,
itemStyle: {
shadowBlur: 2,
shadowColor: colors[2],
color: 'transparent'
},
label: {
rotate: 'tangential',
fontSize: 10,
color: colors[0]
}
}, {
r0: 140,
r: 145,
itemStyle: {
shadowBlur: 80,
shadowColor: colors[0]
},
label: {
position: 'outside',
textShadowBlur: 5,
textShadowColor: '#333'
},
downplay: {
label: {
opacity: 0.5
}
}
}]
}]
};
// 使用剛指定的配置項和數據顯示圖表。
myChart.setOption(option);
</script>
</body>
</html>
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
數據來源:https://echarts.apache.org/examples/zh/editor.html?c=sunburst-drink (opens new window)
FastWeb TUgURLFrame示例:
如需在FastWeb中的TUgURLFrame中實現上述效果,則修改其HTML
屬性,使用下列內容:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ECharts</title>
<!-- 引入 echarts.js -->
<script src="https://cdn.staticfile.org/echarts/5.1.2/echarts.min.js"></script>
</head>
<body>
<!-- 為ECharts準備一個具備大小(寬高)的Dom -->
<div id="main" style="width: 700px;height:600px;"></div>
<script type="text/javascript">
// 基於準備好的dom,初始化echarts實體
var myChart = echarts.init(document.getElementById('main'));
var option;
var app = {};
var data = [{
name: 'Flora',
itemStyle: {
color: '#da0d68'
},
children: [{
name: 'Black Tea',
value: 1,
itemStyle: {
color: '#975e6d'
}
}, {
name: 'Floral',
itemStyle: {
color: '#e0719c'
},
children: [{
name: 'Chamomile',
value: 1,
itemStyle: {
color: '#f99e1c'
}
}, {
name: 'Rose',
value: 1,
itemStyle: {
color: '#ef5a78'
}
}, {
name: 'Jasmine',
value: 1,
itemStyle: {
color: '#f7f1bd'
}
}]
}]
}, {
name: 'Fruity',
itemStyle: {
color: '#da1d23'
},
children: [{
name: 'Berry',
itemStyle: {
color: '#dd4c51'
},
children: [{
name: 'Blackberry',
value: 1,
itemStyle: {
color: '#3e0317'
}
}, {
name: 'Raspberry',
value: 1,
itemStyle: {
color: '#e62969'
}
}, {
name: 'Blueberry',
value: 1,
itemStyle: {
color: '#6569b0'
}
}, {
name: 'Strawberry',
value: 1,
itemStyle: {
color: '#ef2d36'
}
}]
}, {
name: 'Dried Fruit',
itemStyle: {
color: '#c94a44'
},
children: [{
name: 'Raisin',
value: 1,
itemStyle: {
color: '#b53b54'
}
}, {
name: 'Prune',
value: 1,
itemStyle: {
color: '#a5446f'
}
}]
}, {
name: 'Other Fruit',
itemStyle: {
color: '#dd4c51'
},
children: [{
name: 'Coconut',
value: 1,
itemStyle: {
color: '#f2684b'
}
}, {
name: 'Cherry',
value: 1,
itemStyle: {
color: '#e73451'
}
}, {
name: 'Pomegranate',
value: 1,
itemStyle: {
color: '#e65656'
}
}, {
name: 'Pineapple',
value: 1,
itemStyle: {
color: '#f89a1c'
}
}, {
name: 'Grape',
value: 1,
itemStyle: {
color: '#aeb92c'
}
}, {
name: 'Apple',
value: 1,
itemStyle: {
color: '#4eb849'
}
}, {
name: 'Peach',
value: 1,
itemStyle: {
color: '#f68a5c'
}
}, {
name: 'Pear',
value: 1,
itemStyle: {
color: '#baa635'
}
}]
}, {
name: 'Citrus Fruit',
itemStyle: {
color: '#f7a128'
},
children: [{
name: 'Grapefruit',
value: 1,
itemStyle: {
color: '#f26355'
}
}, {
name: 'Orange',
value: 1,
itemStyle: {
color: '#e2631e'
}
}, {
name: 'Lemon',
value: 1,
itemStyle: {
color: '#fde404'
}
}, {
name: 'Lime',
value: 1,
itemStyle: {
color: '#7eb138'
}
}]
}]
}, {
name: 'Sour/\nFermented',
itemStyle: {
color: '#ebb40f'
},
children: [{
name: 'Sour',
itemStyle: {
color: '#e1c315'
},
children: [{
name: 'Sour Aromatics',
value: 1,
itemStyle: {
color: '#9ea718'
}
}, {
name: 'Acetic Acid',
value: 1,
itemStyle: {
color: '#94a76f'
}
}, {
name: 'Butyric Acid',
value: 1,
itemStyle: {
color: '#d0b24f'
}
}, {
name: 'Isovaleric Acid',
value: 1,
itemStyle: {
color: '#8eb646'
}
}, {
name: 'Citric Acid',
value: 1,
itemStyle: {
color: '#faef07'
}
}, {
name: 'Malic Acid',
value: 1,
itemStyle: {
color: '#c1ba07'
}
}]
}, {
name: 'Alcohol/\nFremented',
itemStyle: {
color: '#b09733'
},
children: [{
name: 'Winey',
value: 1,
itemStyle: {
color: '#8f1c53'
}
}, {
name: 'Whiskey',
value: 1,
itemStyle: {
color: '#b34039'
}
}, {
name: 'Fremented',
value: 1,
itemStyle: {
color: '#ba9232'
}
}, {
name: 'Overripe',
value: 1,
itemStyle: {
color: '#8b6439'
}
}]
}]
}, {
name: 'Green/\nVegetative',
itemStyle: {
color: '#187a2f'
},
children: [{
name: 'Olive Oil',
value: 1,
itemStyle: {
color: '#a2b029'
}
}, {
name: 'Raw',
value: 1,
itemStyle: {
color: '#718933'
}
}, {
name: 'Green/\nVegetative',
itemStyle: {
color: '#3aa255'
},
children: [{
name: 'Under-ripe',
value: 1,
itemStyle: {
color: '#a2bb2b'
}
}, {
name: 'Peapod',
value: 1,
itemStyle: {
color: '#62aa3c'
}
}, {
name: 'Fresh',
value: 1,
itemStyle: {
color: '#03a653'
}
}, {
name: 'Dark Green',
value: 1,
itemStyle: {
color: '#038549'
}
}, {
name: 'Vegetative',
value: 1,
itemStyle: {
color: '#28b44b'
}
}, {
name: 'Hay-like',
value: 1,
itemStyle: {
color: '#a3a830'
}
}, {
name: 'Herb-like',
value: 1,
itemStyle: {
color: '#7ac141'
}
}]
}, {
name: 'Beany',
value: 1,
itemStyle: {
color: '#5e9a80'
}
}]
}, {
name: 'Other',
itemStyle: {
color: '#0aa3b5'
},
children: [{
name: 'Papery/Musty',
itemStyle: {
color: '#9db2b7'
},
children: [{
name: 'Stale',
value: 1,
itemStyle: {
color: '#8b8c90'
}
}, {
name: 'Cardboard',
value: 1,
itemStyle: {
color: '#beb276'
}
}, {
name: 'Papery',
value: 1,
itemStyle: {
color: '#fefef4'
}
}, {
name: 'Woody',
value: 1,
itemStyle: {
color: '#744e03'
}
}, {
name: 'Moldy/Damp',
value: 1,
itemStyle: {
color: '#a3a36f'
}
}, {
name: 'Musty/Dusty',
value: 1,
itemStyle: {
color: '#c9b583'
}
}, {
name: 'Musty/Earthy',
value: 1,
itemStyle: {
color: '#978847'
}
}, {
name: 'Animalic',
value: 1,
itemStyle: {
color: '#9d977f'
}
}, {
name: 'Meaty Brothy',
value: 1,
itemStyle: {
color: '#cc7b6a'
}
}, {
name: 'Phenolic',
value: 1,
itemStyle: {
color: '#db646a'
}
}]
}, {
name: 'Chemical',
itemStyle: {
color: '#76c0cb'
},
children: [{
name: 'Bitter',
value: 1,
itemStyle: {
color: '#80a89d'
}
}, {
name: 'Salty',
value: 1,
itemStyle: {
color: '#def2fd'
}
}, {
name: 'Medicinal',
value: 1,
itemStyle: {
color: '#7a9bae'
}
}, {
name: 'Petroleum',
value: 1,
itemStyle: {
color: '#039fb8'
}
}, {
name: 'Skunky',
value: 1,
itemStyle: {
color: '#5e777b'
}
}, {
name: 'Rubber',
value: 1,
itemStyle: {
color: '#120c0c'
}
}]
}]
}, {
name: 'Roasted',
itemStyle: {
color: '#c94930'
},
children: [{
name: 'Pipe Tobacco',
value: 1,
itemStyle: {
color: '#caa465'
}
}, {
name: 'Tobacco',
value: 1,
itemStyle: {
color: '#dfbd7e'
}
}, {
name: 'Burnt',
itemStyle: {
color: '#be8663'
},
children: [{
name: 'Acrid',
value: 1,
itemStyle: {
color: '#b9a449'
}
}, {
name: 'Ashy',
value: 1,
itemStyle: {
color: '#899893'
}
}, {
name: 'Smoky',
value: 1,
itemStyle: {
color: '#a1743b'
}
}, {
name: 'Brown, Roast',
value: 1,
itemStyle: {
color: '#894810'
}
}]
}, {
name: 'Cereal',
itemStyle: {
color: '#ddaf61'
},
children: [{
name: 'Grain',
value: 1,
itemStyle: {
color: '#b7906f'
}
}, {
name: 'Malt',
value: 1,
itemStyle: {
color: '#eb9d5f'
}
}]
}]
}, {
name: 'Spices',
itemStyle: {
color: '#ad213e'
},
children: [{
name: 'Pungent',
value: 1,
itemStyle: {
color: '#794752'
}
}, {
name: 'Pepper',
value: 1,
itemStyle: {
color: '#cc3d41'
}
}, {
name: 'Brown Spice',
itemStyle: {
color: '#b14d57'
},
children: [{
name: 'Anise',
value: 1,
itemStyle: {
color: '#c78936'
}
}, {
name: 'Nutmeg',
value: 1,
itemStyle: {
color: '#8c292c'
}
}, {
name: 'Cinnamon',
value: 1,
itemStyle: {
color: '#e5762e'
}
}, {
name: 'Clove',
value: 1,
itemStyle: {
color: '#a16c5a'
}
}]
}]
}, {
name: 'Nutty/\nCocoa',
itemStyle: {
color: '#a87b64'
},
children: [{
name: 'Nutty',
itemStyle: {
color: '#c78869'
},
children: [ {
name: 'Peanuts',
value: 1,
itemStyle: {
color: '#d4ad12'
}
}, {
name: 'Hazelnut',
value: 1,
itemStyle: {
color: '#9d5433'
}
}, {
name: 'Almond',
value: 1,
itemStyle: {
color: '#c89f83'
}
}]
}, {
name: 'Cocoa',
itemStyle: {
color: '#bb764c'
},
children: [{
name: 'Chocolate',
value: 1,
itemStyle: {
color: '#692a19'
}
}, {
name: 'Dark Chocolate',
value: 1,
itemStyle: {
color: '#470604'
}
}]
}]
}, {
name: 'Sweet',
itemStyle: {
color: '#e65832'
},
children: [{
name: 'Brown Sugar',
itemStyle: {
color: '#d45a59'
},
children: [{
name: 'Molasses',
value: 1,
itemStyle: {
color: '#310d0f'
}
}, {
name: 'Maple Syrup',
value: 1,
itemStyle: {
color: '#ae341f'
}
}, {
name: 'Caramelized',
value: 1,
itemStyle: {
color: '#d78823'
}
}, {
name: 'Honey',
value: 1,
itemStyle: {
color: '#da5c1f'
}
}]
}, {
name: 'Vanilla',
value: 1,
itemStyle: {
color: '#f89a80'
}
}, {
name: 'Vanillin',
value: 1,
itemStyle: {
color: '#f37674'
}
}, {
name: 'Overall Sweet',
value: 1,
itemStyle: {
color: '#e75b68'
}
}, {
name: 'Sweet Aromatics',
value: 1,
itemStyle: {
color: '#d0545f'
}
}]
}];
option = {
title: {
text: 'WORLD COFFEE RESEARCH SENSORY LEXICON',
subtext: 'Source: https://worldcoffeeresearch.org/work/sensory-lexicon/',
textStyle: {
fontSize: 14,
align: 'center'
},
subtextStyle: {
align: 'center'
},
sublink: 'https://worldcoffeeresearch.org/work/sensory-lexicon/'
},
series: {
type: 'sunburst',
data: data,
radius: [0, '95%'],
sort: null,
emphasis: {
focus: 'ancestor'
},
levels: [{}, {
r0: '15%',
r: '35%',
itemStyle: {
borderWidth: 2
},
label: {
rotate: 'tangential'
}
}, {
r0: '35%',
r: '70%',
label: {
align: 'right'
}
}, {
r0: '70%',
r: '72%',
label: {
position: 'outside',
padding: 3,
silent: false
},
itemStyle: {
borderWidth: 3
}
}]
}
};
// 使用剛指定的配置項和數據顯示圖表。
myChart.setOption(option);
</script>
</body>
</html>
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740