echarts的legend的formatter想要name和value的值组合子一起
时间: 2024-03-02 18:54:17 浏览: 231
echarts 使用formatter 修改鼠标悬浮事件信息操作
5星 · 资源好评率100%
您好,对于echarts的legend组件,我们可以通过formatter属性来自定义其显示内容。如果想要将name和value的值组合在一起显示,可以使用formatter函数并在其中拼接name和value的值。例如:
```
legend: {
data: ['A', 'B', 'C'],
formatter: function(name) {
var value = echarts.getInstance().getOption('series')[0].data[name];
return name + ' ' + value;
}
},
```
上面的代码中,我们通过getOption方法获取了series中对应的data数组,然后将其与name值拼接在一起作为legend的显示内容。希望能够帮到您!
阅读全文