51 首页
Examples - Apache EChartshttps://echarts.apache.org/examples/zh/index.html#chart-type-pie
1.1 饼图制作
option = {
title: {
text: '医美抗衰项目目标消费者性别比例',
subtext: '',
left: 'center',
textStyle:{
color :'#FFD700'
}
},
tooltip: {
trigger: 'item'
},
legend: {
orient: 'horizontal',
bottom: 'bottom'
},
series: [
{
name: 'Access From',
type: 'pie',
radius: '50%',
data: [
{ value: 56, name: '女' ,itemStyle:{'color':'#EE82EE'}},
{ value: 44, name: '男',itemStyle:{'color':'#FFA500'}}
],
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
}
}
}
]
};
参考资料
1. title 参数
3 颜色对照表
RGB颜色值与十六进制颜色码转换工具https://www.sioe.cn/yingyong/yanse-rgb-16/
5