highchart 隐藏图例中的某个图例(legend)
需求:highchart隐藏图例中的某个图例,只保留线,不要图例
这里D是不需要图例的,要把D隐藏
代码如下:
let report = { chart: { type: "spline", marginRight: 40, events: { load() { debugger; const chart = this; const allLegendItems = chart.legend.allItems; allLegendItems[allLegendItems.length - 1].legendGroup.hide(); } }, }, title: { text: "", },
注意点:这里一定要把events放在chart对象中
效果: