use svg circles to make a scatterplot
plot = new d3.chart.Scatter()
.width width
.height height
.margin margin
.x_value (d) -> new Date d.time
.y_value (d) -> d.value
d3.json "data.json", (error, data) ->
if error?
console.warn error
return
d3.select "#plot"
.datum data
.call plot.draw