使用 highcharts,我将多个系列添加到现有图表中。添加系列时,我需要能够根据添加的系列打开或关闭工具提示。
这是我所在的位置:
widget.chart.addSeries({
data: newSeries,
color: color,
tooltip: {
enabled: true,
formatter: function() {
return 'test';
}
}
});