I set the tooltip z-index and the labels z-index so the labels won't go over the tooltip.
.label { z-index: 1!important;}
.highcharts-tooltip span {
background-color:#ffF;
padding: 0px;
z-index:9999!important;
}
.tooltip {
padding:0px;
}
It works for the tooltip but not for the tooltip frame.
Is there a way to fix it for the tooltip frame? Or is there a way to remove this frame?