Our page has a large number of horizontal bar charts that generated by HighCharts. Long story short, the tooltips from charts are being covered up by the charts below and to the side of them. I've messed around with the z-index and it doesn't seem to be making a difference. I've looked at previous similar questions, but they are no help.
Here's my example: http://jsfiddle.net/o15gywrv/5/
If you hover over the first chart, you'll see that the tooltip is covered up by the second chart.
I've tried playing with the z-index on the container and the tooltip and I'm not seeing any difference:
.highcharts-container {
overflow: visible !important;
z-index: 0 !important;
}
.highcharts-tooltip {
z-index: 9998;
}