echarts 更改数据字体大小
时间: 2023-11-24 19:47:04 浏览: 127
字体大小修改
4星 · 用户满意度95%
可以通过设置 textStyle 属性来更改 echarts 图表中数据的字体大小。具体操作如下:
```javascript
option = {
// 其他配置项
series: [{
type: 'bar',
data: [10, 20, 30, 40, 50],
itemStyle: {
// 设置柱状图颜色
color: '#0099FF'
},
label: {
// 设置数据标签样式
show: true,
position: 'top',
textStyle: {
fontSize: 16 // 设置字体大小
}
}
}]
};
```
在上述代码中,我们通过设置 label.textStyle.fontSize 属性来更改数据标签的字体大小。
阅读全文