Skip to content

Instantly share code, notes, and snippets.

@kuflash
Created February 12, 2015 14:44
Show Gist options
  • Save kuflash/f793e79ded95576e798b to your computer and use it in GitHub Desktop.
Save kuflash/f793e79ded95576e798b to your computer and use it in GitHub Desktop.
Highcharts snippets
// Добавление форматирования дат по четвертям
Highcharts.dateFormats = {
Q: function (timestamp) {
var date = new Date(timestamp),
quarter = date.getUTCMonth();
return Math.floor(quarter/3) + 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment