Is there a way that I can change the default behaviour of the Legend click handler in Highcharts.js so that when I click on a legend label it isolates the series, instead of hiding it. I.e. it should hide all other series on the chart.
http://jsfiddle.net/adamtsiopani/rNkBs/
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
useHTML: true,
labelFormatter: function () {
console.log(this);
return this.name + ' <a class="isolate-series">[isolate]</a>';
}
},