I am using highcharts and cannot figure out what the date input should be from rails dates to the highcharts accepted format for dates.
In my migration file i am storing the date like this:
t.date :consumption_date
The value gets stored in this format "2012-03-25", and going to the terminal and finding the record i get this:
=> Sat, 31 Mar 2012
When the chart renders, the individual points display Invalid date. The following array gets output to highcharts to render
[[Sun, 25 Mar 2012, 1158], [Sat, 31 Mar 2012, 1200]]
The format that highcharts uses in one of their demo charts, when the data is submitted in jquery is of the form:
[[Date.UTC(1970, 9, 27), 0 ], [Date.UTC(1970, 10, 10), 0.6 ]]
How can i get rid of the invalid date, by submitting the correct date format to highcharts.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…