Highcharts - 在图表容器外显示系列值?

时间:2015-07-28 10:00:48

标签: jquery highcharts highstock

我想在标签中的图表容器外显示我的图表系列中的值。我在工具提示中有值,如何在图表外的另一个容器中显示这些值? fiddle

如何在鼠标悬停时在图表外的标签中显示系列值?

       mouseOver: function () {
                    console.log(chart.series)
                }, 

提前致谢。

1 个答案:

答案 0 :(得分:2)

JS:

//add this
    tooltip: {

                formatter:function(){
                          $('#tooltip').html(this.y);
                          return this.y;
                }
            },

HTML:

<div id="container" style="width: 600px; height: 350px; margin: 0 auto"></div>


<div id="tooltip"></div>

这里是enter image description here

希望有所帮助