Skip to content Skip to sidebar Skip to footer

Unable To Plot Chart With New Data Format

I am converting my existing chart to support new data format. Old data format for X-axis: using dates in epoch format like 1356912000000 (Number) New data format for X-axis: using

Solution 1:

Please read the D3 page on time formatting

In your case you just need to convert those strings in the format "2012-12-31" to dates:

> var dateFormat = d3.time.format("%Y-%m-%d");
> dateFormat.parse("2012-12-31");
Mon Dec 31201200:00:00 GMT+0100 (CET)

Edit: find here a working fiddle http://jsfiddle.net/vfe2B/94/

The error was that you need to use these date parser to convert the strings to dates when you are creating the chart. The function .tickformat just controls how you represent the data on the axis, but you need to "feed" the chart with dates when you create it like this:

.x(function(d) { return dateFormat.parse(d[0]) })

I changed the tickformat in my jsfiddle so you can understand better the difference.

Post a Comment for "Unable To Plot Chart With New Data Format"