echarts legend 字体样式
时间: 2023-08-16 15:12:38 浏览: 158
echarts legend 排列问题
你可以使用 ECharts 的 legend 配置项来设置字体样式。在 legend 的 textStyle 属性中,可以设置字体的大小、颜色、字体类型等。以下是一个示例:
```javascript
option = {
legend: {
textStyle: {
fontSize: 12, // 字体大小
color: '#333', // 字体颜色
fontStyle: 'normal', // 字体样式,可选值:'normal', 'italic', 'oblique'
fontWeight: 'bold', // 字体粗细,可选值:'normal', 'bold', 'bolder', 'lighter'
fontFamily: 'Arial, sans-serif' // 字体类型
}
},
// 其他配置项...
};
```
你可以根据需要修改 textStyle 中的属性值来调整 legend 字体的样式。
阅读全文