ECharts 入门教程 ECharts图例组件配置 状态显示

2024-02-25 开发教程 ECharts 入门教程 匿名 4

legend.selectedMode | string, boolean

[ default: true ]

图例选择的模式,控制是否可以通过点击图例改变系列的显示状态。默认开启图例选择,可以设成 false 关闭。

除此之外也可以设成 'single' 或者 'multiple' 使用单选或者多选模式。


legend.inactiveColor | Color

[ default: '#ccc' ]

图例关闭时的颜色。


legend.selected | Object

图例选中状态表。

示例:

selected: {
// 选中'系列1'
'系列1': true,
// 不选中'系列2'
'系列2': false
}