1

使用 highcharts,我将多个系列添加到现有图表中。添加系列时,我需要能够根据添加的系列打开或关闭工具提示。

这是我所在的位置:


widget.chart.addSeries({
      data: newSeries, 
      color: color, 
      tooltip: { 
        enabled: true, 
        formatter: function() { 
          return 'test';
        }  
      }
    });
4

1 回答 1

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;
    }
}

演示

于 2012-11-28T23:36:41.683 回答