Highcharts - 在图表容器外显示系列值?
Highcharts - show series values outside chart container?
我想在标签中的图表容器外显示我的图表系列中的值。我在工具提示中有值,如何在标签上的另一个容器中的图表外部显示这些值? fiddle。
如何在鼠标悬停在图表外的标签中显示系列值?
mouseOver: function () {
console.log(chart.series)
},
提前致谢。
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>
这是fiddle
希望对您有所帮助
我想在标签中的图表容器外显示我的图表系列中的值。我在工具提示中有值,如何在标签上的另一个容器中的图表外部显示这些值? fiddle。
如何在鼠标悬停在图表外的标签中显示系列值?
mouseOver: function () {
console.log(chart.series)
},
提前致谢。
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>
这是fiddle
希望对您有所帮助