我如何在情节线上获得静态工具提示,highstock?

时间:2014-11-11 21:42:43

标签: javascript jquery json highcharts highstock

我找到了这个例子:jsfiddle 相关问题:https://stackoverflow.com/questions...

我只是不希望事件“mouseout和mouseover”,我只是想从头开始加载,从头开始显示标签。

events: {
      //  mouseover: function (e) {
          load: function (e) {
displayTooltip(this.options.tooltipText, this.svgElem.d.split(' ')[1]);
        }/*,
        mouseout: hideTooltip*/
    }

我试过,但我没有受到好评。

2 个答案:

答案 0 :(得分:4)

在我看来,你所谈论的只是一个plotLine标签?

参考:

答案 1 :(得分:-1)

An object defining mouse events for the plot line. Supported properties are click, mouseover, mouseout, mousemove

因此情节线事件中没有加载事件。只有图表包含事件load。这是我在图表加载事件中实现的内容:http://jsfiddle.net/xL7us/72/