1
使用高圖,我將多個系列添加到現有的圖表。添加系列時,我需要能夠根據添加的系列來設置或打開工具提示。Highcharts - 僅向某些動態添加的系列添加工具提示
這是我在這裏:
widget.chart.addSeries({
data: newSeries,
color: color,
tooltip: {
enabled: true,
formatter: function() {
return 'test';
}
}
});
它沒有按預期的工具提示添加到一個系列 – DanielCW