echarts 饼图文字移除描边
时间: 2023-10-06 20:09:32 浏览: 223
echarts制作的饼状图
4星 · 用户满意度95%
要移除echarts饼图文字的描边,可以通过设置textStyle中的textBorderColor和textBorderWidth属性来实现。将它们的值都设置为"transparent"即可。
示例代码如下:
```
option = {
// 其他配置项...
series: [{
type: 'pie',
data: [
{value: 335, name: '直接访问'},
{value: 310, name: '邮件营销'},
{value: 234, name: '联盟广告'},
{value: 135, name: '视频广告'},
{value: 1548, name: '搜索引擎'}
],
label: {
textStyle: {
textBorderColor: 'transparent',
textBorderWidth: 0
}
}
}]
};
```
在上面的代码中,我们将label中的textStyle的textBorderColor属性设置为"transparent",将textBorderWidth属性设置为0,这样就可以移除饼图上文字的描边了。
阅读全文