What format does the highcharts js library accept for dates?
Internally Highcharts uses javascript Date numbers (the number of milliseconds since Jan 1st 1970) to represent dates. See Mozilla reference. To get dates on an axis you will first need to set the axis type to ‘datetime’: xAxis: { type: ‘datetime’ } You have a few options when specifying the series data (all three examples … Read more