score:2

Accepted answer

You need to load your csv, parse your dates into timestamps (by i.e Date.UTC() or Date.parse()) and extract y value.

http://www.highcharts.com/docs/working-with-data/preprocessing-data-from-a-file-csv-xml-json

score:0

I found the solution. Because I have for each value a given date, I need to create the dataset on my own:

series.data.push([Date.UTC(a[2], a[1], a[0], b[0], b[1], b[2],b[2]),parseFloat(value)]);

Related Query

More Query from same tag