Skip to content

Instantly share code, notes, and snippets.

@shacheeswadia
Created November 21, 2021 10:51
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 shacheeswadia/f52e48bc74635e780757db6e9f8aed29 to your computer and use it in GitHub Desktop.
Save shacheeswadia/f52e48bc74635e780757db6e9f8aed29 to your computer and use it in GitHub Desktop.
// set x axis labels rotation
chart.xAxis().labels().rotation(90);
chart.xAxis().minorLabels().rotation(90);
chart
.xAxis()
.minorLabels()
.format(function () {
return data.x[Math.round(this.value)];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment