核心代码如下:
plotOptions: {series: {events: {show: function () {const chart = this.chartconst series = chart.serieslet i = series.lengthlet otherSerieswhile (i--) {otherSeries = series[i];if (otherSeries != this && otherSeries.visible) {otherSeries.hide();}}},legendItemClick: function () {if (this.visible) {return false;}}}}
},