18 lines
374 B
JavaScript
18 lines
374 B
JavaScript
function makeDemo1() {
|
|
d3.csv("data/examples-simple.csv").then(function (data) {
|
|
d3.select("svg")
|
|
.selectAll("circle")
|
|
.data(data)
|
|
.enter()
|
|
.append("circle")
|
|
.attr("r", 5)
|
|
.attr("fill", "red")
|
|
.attr("cx", function (d) {
|
|
return d["x"];
|
|
})
|
|
.attr("cy", function (d) {
|
|
return d["y"];
|
|
});
|
|
});
|
|
}
|