echarts环形饼图内圈背景色
时间: 2023-06-30 11:25:32 浏览: 198
要设置ECharts环形饼图内圈的背景色,可以在series配置中设置`label`属性下的`color`属性,例如:
```javascript
option = {
series: [
{
type: 'pie',
radius: ['50%', '70%'],
label: {
color: '#fff', // 设置标签文本的颜色
fontSize: 14,
position: 'center'
},
data: [
{value: 335, name: '直接访问'},
{value: 310, name: '邮件营销'},
{value: 234, name: '联盟广告'},
{value: 135, name: '视频广告'},
{value: 1548, name: '搜索引擎'}
],
itemStyle: {
emphasis: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
},
normal: {
color: '#c23531', // 设置扇形的颜色
label: {
show: false // 隐藏标签
}
}
}
}
]
};
```
在`itemStyle`属性中设置`normal`属性下的`color`属性可以设置扇形的颜色。同时在`label`属性中设置`position: 'center'`可以让标签居中显示。
阅读全文