Highcharts Tooltip cropping

I’m pretty sure, that similar topic exists on stack, however I can’t find it. In general it is possible to achieve that using HTML tooltip, see: http://jsfiddle.net/7wVDV/147/ CSS: .highcharts-container { overflow: visible !important; } .MyChartTooltip { position: relative; z-index: 50; border: 2px solid rgb(0, 108, 169); border-radius: 5px; background-color: #ffffff; padding: 5px; font-size: 9pt; }

Highchart – show / hide an y-Axis without hiding the series

Highcharts 4.1.9+ Since 4.1.9, there is an option Axis.visible which can be used to show/hide an axis, demo: http://jsfiddle.net/3sembmfo/36/ Older versions of Highcharts It’s a new feature for Highcharts 3.0 – that allows to update axes in realtime: chart.yAxis[0].update(object) – as object takes the same options as for creating chart. For example: chart.yAxis[0].update({ labels: { … Read more