I am getting
Uncaught TypeError: Cannot read property 'length' of undefined
from my console at this line
var parseDate = d3.time.format("%Y-%m-%d").parse;
data.forEach(function(d) {
d.Day = parseDate(d.Day);
});
here is how my date is formatted in my json object day: "2013-02-04"