i\'m trying to represent these data using highcharts:
[
{
\"name\": \"c1\",
\"data\": [
[
-52587360000000,
2
],
[
in my case, the first element of the "data array" , is datetime-descend. this is incorrect for HiChart. e.g.
# this sort cause error 15 of highchart
[ 5, 'content...' ],
[ 4, 'content...' ],
[ 3, 'content...' ]
solution: re-order the array with the 'asend order' for the first element, e.g.
# this is working good
[ 3, 'content...' ],
[ 4, 'content...' ],
[ 5, 'content...' ]