Skip to content

Instantly share code, notes, and snippets.

@Lazhari
Created March 4, 2016 15:41
Show Gist options
  • Save Lazhari/b9da3104b05c9e12def0 to your computer and use it in GitHub Desktop.
Save Lazhari/b9da3104b05c9e12def0 to your computer and use it in GitHub Desktop.
Toggle Show/Hide Lines for Highcharts
plotOptions: {
series: {
events: {
legendItemClick: function(event) {
var seriesIndex = this.index;
var series = this.chart.series;
for (var i = 0; i < series.length; i++) {
if (series[i].index !== seriesIndex) {
series[i].hide();
}
}
return true;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment