You must provide a formatting function. The trick is to return false when you don't want to show anything
Here is a little test
HTML page -
<script src="http://code.highcharts.com/highcharts.js"></script> <div id="container" style="height: 400px"></div> <button id='toggleTooltip'>Toggle tooltip</button>
JS Code -
$(function () { $('#container').highcharts({ title: { text: 'tooltip enabled is set to false' }, xAxis: { categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] }, series: [{ data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4] }, { data: [194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4] }] }); $('#toggleTooltip').click(function () { var tooltipOptions = $('#container').highcharts().tooltip.options; if ($(this).hasClass('enabled')) { tooltipOptions.formatter = null; $(this).removeClass('enabled'); } else { tooltipOptions.formatter = function () { return false; } $(this).addClass('enabled'); } }); });
Watch live here
Arnab
source share