echart饼图设置指示文字颜色
时间: 2023-10-02 20:03:47 浏览: 83
【JavaScript源代码】vue实现echart饼图legend显示百分比的方法.docx
你可以通过设置 `textStyle` 属性来设置饼图的指示文字颜色。具体的做法是:
```javascript
option = {
series: [
{
type: 'pie',
data: [
{value: 335, name: '直接访问'},
{value: 310, name: '邮件营销'},
{value: 234, name: '联盟广告'},
{value: 135, name: '视频广告'},
{value: 1548, name: '搜索引擎'}
],
label: {
show: true,
formatter: '{b} : {c} ({d}%)',
textStyle: {
color: '#333' // 设置文字颜色
}
}
}
]
};
```
上面的代码中,`label.textStyle.color` 属性设置了文字颜色为 `#333`,你可以根据自己的需求来设置不同的颜色。
阅读全文