echarts legend 文字加粗
时间: 2023-09-30 10:04:17 浏览: 301
echarts legend 排列问题
要在 Echarts 中将图例(legend)中的文字加粗,可以通过设置图例的 textStyle 属性来实现。具体的代码如下:
```javascript
option = {
// 其他配置项...
legend: {
textStyle: {
fontWeight: 'bold'
}
},
// 其他配置项...
};
```
将上述代码中的 option 部分嵌入到你的 Echarts 配置中,然后将 legend 下的 textStyle 属性设置为 `{ fontWeight: 'bold' }`,即可使图例中的文字加粗显示。
阅读全文