I'm new to D3js and having consistent problems working with json files. This issue has me very confused. I posted an example on:
http://jsfiddle.net/tommy6s/m5dfmf5r/
I have been working in the console and have tried the following as well as every other combination that I can think of:
 console.log(data) //returns data
 console.log(data.value); //returns undefined 
 console.log(d.value); //returns d is not defined
 console.log(data[0].value); //returns  67.53 first single value
I also get a console error: TypeError: string.slice is not a function
var n = d3_time_numberRe.exec(string.slice(i, i + 4));

