score:2

Accepted answer

if you check the javascript for errors you'll see this one:

http://www.highcharts.com/errors/15

highcharts expects data to be sorted

this happens when you are trying to create a line series or a stock chart where the data is not sorted in ascending x order. for performance reasons, highcharts does not sort the data, instead it is required that the implementer pre-sorts the data.

this appears to be misleading because at first glance you data looks fine.

but, the with date.utc function, the month is zero based so some of your dates like

date.utc(2014,01,31)  // this is february the 31st!?!

don't make any sense and date.utc is trying to make meaning out of them.


Related Query

More Query from same tag