Highcharts tooltip is hidden behind other charts -
when putting multiple charts tooltips upper charts hidden behind others.
i found tips on how nothing helped. there anyway keep tooltips on top of charts?
the example here: http://jsfiddle.net/zw3um/
thanks lot!
this pure html : div element loaded after ( meaning appearing after on html page) in front.
in order first chart tooltip in front of second : load second in first , set y position on page using absolute or relative position in css :
i've change order, putting container2 in first in html:
<div id="container2" style="height: 200px"></div> <div id="container1" style="height: 200px"></div>
then set position of container2 under first 1 (thanks top style attribute) :
div[id="container2"] { position:absolute; top:200px; }
here result : http://jsfiddle.net/zw3um/3/
Comments
Post a Comment