提交 e7888ee4 编写于 作者: S sushuang

Merge branch 'master' of https://www.github.com/ecomfe/echarts

......@@ -81,23 +81,23 @@
}]
}]
}, {
name: '绘本',
name: '其他',
children: [{
name: '5☆',
children: [{
name: '设计诗'
name: '纳博科夫短篇小说全集'
}]
}, {
name: '4☆',
children: [{
name: '假如生活糊弄了你'
name: '安魂曲'
}, {
name: '博物学家的神秘动物图鉴'
name: '人生拼图版'
}]
}, {
name: '3☆',
children: [{
name: '方向'
name: '比起爱你,我更需要你'
}]
}]
}]
......@@ -306,14 +306,14 @@
chart.setOption({
color: colors,
title: {
text: '2017 读书记录',
bottom: 30,
left: 'center',
textStyle: {
color: colors[0]
}
},
// title: {
// text: '2017 读书记录',
// bottom: 30,
// left: 'center',
// textStyle: {
// color: colors[0]
// }
// },
series: [{
type: 'sunburst',
center: ['50%', '48%'],
......
......@@ -912,7 +912,7 @@
highlightPolicy: 'ancestor',
data: data,
radius: [0, '95%'],
sortOrder: null,
sort: null,
levels: [{}, {
r0: '15%',
r: '35%',
......
<html>
<head>
<meta charset="utf-8">
<script src="lib/esl.js"></script>
<script src="lib/config.js"></script>
</head>
<body>
<style>
html, body, #main {
width: 100%;
height: 100%;
/* background-image: url(old_mathematics.png); */
/* background-repeat: repeat; */
}
</style>
<div id="main"></div>
<script>
var chart;
require([
'echarts'
], function (echarts) {
chart = echarts.init(document.getElementById('main'), null, {
// renderer: 'svg'
});
var item1 = {
normal: {
color: '#F54F4A'
}
};
var item2 = {
normal: {
color: '#FF8C75'
}
};
var item3 = {
normal: {
color: '#FFB499'
}
};
var data = [{
children: [{
value: 5,
children: [{
value: 1,
itemStyle: item1
}, {
value: 2,
children: [{
value: 1,
itemStyle: item2
}]
}, {
children: [{
value: 1
}]
}],
itemStyle: item1
}, {
value: 10,
children: [{
value: 6,
children: [{
value: 1,
itemStyle: item1
}, {
value: 1
}, {
value: 1,
itemStyle: item2
}, {
value: 1
}],
itemStyle: item3
}, {
value: 2,
children: [{
value: 1
}],
itemStyle: item3
}, {
children: [{
value: 1,
itemStyle: item2
}]
}],
itemStyle: item1
}],
itemStyle: item1
}, {
value: 9,
children: [{
value: 4,
children: [{
value: 2,
itemStyle: item2
}, {
children: [{
value: 1,
itemStyle: item1
}]
}],
itemStyle: item1
}, {
children: [{
value: 3,
children: [{
value: 1
}, {
value: 1,
itemStyle: item2
}]
}],
itemStyle: item3
}],
itemStyle: item2
}, {
value: 7,
children: [{
children: [{
value: 1,
itemStyle: item3
}, {
value: 3,
children: [{
value: 1,
itemStyle: item2
}, {
value: 1
}],
itemStyle: item2
}, {
value: 2,
children: [{
value: 1
}, {
value: 1,
itemStyle: item1
}],
itemStyle: item1
}],
itemStyle: item3
}],
itemStyle: item1
}, {
children: [{
value: 6,
children: [{
value: 1,
itemStyle: item2
}, {
value: 2,
children: [{
value: 2,
itemStyle: item2
}],
itemStyle: item1
}, {
value: 1,
itemStyle: item3
}],
itemStyle: item3
}, {
value: 3,
children: [{
value: 1,
}, {
children: [{
value: 1,
itemStyle: item2
}]
}, {
value: 1
}],
itemStyle: item3
}],
itemStyle: item1
}];
chart.setOption({
series: {
radius: ['15%', '80%'],
type: 'sunburst',
sort: null,
highlightPolicy: 'ancestor',
data: data,
label: {
normal: {
rotate: 'radial'
}
},
levels: [],
itemStyle: {
normal: {
color: '#ddd',
borderWidth: 2
}
}
}
});
});
</script>
</body>
</html>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册