使用highcharts,我将多个系列添加到现有图表中。添加系列时,我需要能够根据添加的系列设置开启或关闭工具提示。
我在这里:
widget.chart.addSeries({
data: newSeries,
color: color,
tooltip: {
enabled: true,
formatter: function() {
return 'test';
}
}
});
答案 0 :(得分:3)
试试这个。
内部chart
选项。
tooltip: {
formatter: function() {
var text = false;
if(this.series.name == "GOOG") {
// just an example of serie name
// you can use index or other data too
text = 'test';
}
return text;
}
}