I am a D3.js newbie and need some help.
I have a Multiline Graph generated from JSON data:
"City": "New York",
"Data": [
{
"Date": "20111001",
"Value": "63.4"
},
{
"Date": "20111002",
"Value": "58.0"
},
...
]
},
{
"City": "San Francisco",
"Data": [
{
"Date": "20111001",
"Value": "62.7"
},
{
"Date": "20111002",
"Value": "59.9"
},
As you see in here http://jsfiddle.net/hapypork/JYS8n/66/ it is working. But I want dots/circles and each data point and not like it is now, just 3 dots on each graph. I need to iterate through the nested data, I guess. But how?
Thank you for helping me.