admin管理员组文章数量:1342623
I have a highchart of scatters and bars . I am unable to view tooltip of a scatter point which is over bar... here is the fiddle /
I am using these two series:
series: [{
type: 'scatter',
index:2,
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
name: 'Temperature'
}, {
type: 'column',
index:1,
data: [220,220,220,220,120,220,220,220,220,220,220,220],
name: 'Rainfall'
}]
Any help is highly appreciated...
Thanks
I have a highchart of scatters and bars . I am unable to view tooltip of a scatter point which is over bar... here is the fiddle http://jsfiddle/tZ9Rt/
I am using these two series:
series: [{
type: 'scatter',
index:2,
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
name: 'Temperature'
}, {
type: 'column',
index:1,
data: [220,220,220,220,120,220,220,220,220,220,220,220],
name: 'Rainfall'
}]
Any help is highly appreciated...
Thanks
Share Improve this question asked Oct 19, 2012 at 12:47 Mubbasher KhaliqMubbasher Khaliq 3791 gold badge3 silver badges10 bronze badges3 Answers
Reset to default 13Make your tooltip
shared, and change the series type
to 'line'
and lineWidth
to 0
. Then you'll have a "line" chart that looks like a scatter plot, but tooltips work!
tooltip: {
shared: true //make the tooltip accessible across all series
},
plotOptions: {
line: {
lineWidth: 0 //make the lines disappear
}
},
series: [{
type: 'column',
name: 'Column Data',
data: [5, 4, 3, 2, 1, 0]
}, {
type: 'line', //this is a 'fake' scatter plot
name: 'Pseudo-scatter',
data: [0, 1, 2, 3, 4, 5]
}]
It is known bug, reported here: https://github./highslide-software/highcharts./issues/923
The reason you are unable to view the tooltip for the scatter points over the bar is because the bar gains focus before the scatter point. The bar will maintain the focus of the tooltip until the mouse is no longer over the bar. You could always use a shared tooltip like in this example. By doing so it will show all the data associated with the category your mouse is hovering over. Here is the relevant code:
tooltip: {
shared: true
},
本文标签: javascriptScatter tooltip of highchart is not being displayingStack Overflow
版权声明:本文标题:javascript - Scatter tooltip of highchart is not being displaying - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743697394a2523733.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论