For highstock / highcharts I need the date format to be like this:
series: [{
data: [[1331028000000, 5], [1331031600000, 6], [1331035200000, 4]]
}]
The first number in each array is the date-stamp, I think it is UTC
. When I get the data that I need to put into the chart, I get it like this:
"2013-06-08T06:00:00.000-07:00"
My question is, what format is this? And how should I convert it to what I need for highstock / highcharts.