echarts环形图legend改为条形
时间: 2023-11-10 09:00:29 浏览: 67
echarts修改版
4星 · 用户满意度95%
要将Echarts环形图的legend改为条形,可以通过设置legend的orient属性为'vertical'来实现。具体步骤如下:
1. 找到图表的option配置项。
2. 在option中找到legend配置项。
3. 在legend配置项中设置orient属性为'vertical'。
下面是修改后的代码示例:
```javascript
option = {
// 其他配置项...
legend: {
orient: 'vertical'
},
// 其他配置项...
};
```
以上代码将会把环形图的legend显示为条形。
阅读全文