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
},
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743697394a4491985.html
评论列表(0条)