Skip to content

Instantly share code, notes, and snippets.

@lettergram
Last active February 11, 2018 21:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lettergram/8fa4a31ecb7d29446f886d685d90369e to your computer and use it in GitHub Desktop.
Save lettergram/8fa4a31ecb7d29446f886d685d90369e to your computer and use it in GitHub Desktop.
Adjust highcharts based on window size
Highcharts.chart('chart_container', {
chart: {
events: {
load: function() {
/* On mobile, remove labels */
if ($(window).width() < 900) {
this.yAxis[0].update({
title: false,
labels: false
})
this.yAxis[1].update({
visible: false
}
this.tooltip.update({
style: {
width: Math.min(300, 2*$(window).width()/3)
}
})
}
}
}
},
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment