echarts label文字颜色
时间: 2023-08-16 10:14:33 浏览: 202
label字体颜色
在 Echarts 中,可以通过设置 series 中的 label 属性来控制标签的样式,其中包括文字颜色。具体的设置方式如下:
```javascript
option = {
series: [{
type: 'bar', // 图表类型
data: [5, 20, 36, 10, 10, 20], // 数据
label: {
show: true, // 是否显示标签
position: 'top', // 标签的位置(可选值:top、left、right、bottom、inside、insideLeft、insideRight、insideTop、insideBottom)
textStyle: {
color: 'red' // 标签文字颜色
}
}
}]
};
```
在上述代码中,通过设置 label 的 textStyle 属性中的 color 来控制标签文字的颜色。你可以根据需要将颜色值修改为你想要的颜色。
阅读全文