score:15

Accepted answer

possible solution: http://jsfiddle.net/sdu8v/1/

required css:

.highcharts-container {
  position: inherit !important;
}
.highcharts-tooltip {
  z-index: 9998;
}

thanks to @piotr, updated design for 4.1.x.

score:2

you can't have only the tooltip to get rendered over the pink box because the whole chart is rendered in a single svg object that is either totallly over or beneath your pink both.

what you can do is to render the whole chart over the pink box by making it background transparent.

your chart:

chart: { backgroundcolor:'transparent' }

your div should also be beneath the chart:

<div id="box" style="z-index:0"></div>

live example: http://jsfiddle.net/7tcj6/


Related Query

More Query from same tag