Labels on my chart are showing over tooltip, which doesn\'t look very nice. I tried to play with zIndex
, but to no result. How can I make tooltips not transpare
I still had issues with some of the solutions around, setting z-index: 999 on .tooltip wasn't having any effect because of the various container divs. But, I've found setting this works nicely (when legend and tooltip are HTML). No need for setting other z-indexes either:
.highcharts-legend {
z-index: -1;
}