Built with blockbuilder.org
forked from romsson's block: minimalistic circle grid
license: mit |
Built with blockbuilder.org
forked from romsson's block: minimalistic circle grid
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<body> | |
<script src="http://d3js.org/d3.v4.js"></script> | |
<script src="http://romsson.github.io/d3-gridding/build/d3-gridding.js"></script> | |
<script> | |
d3.select("body").append("svg") | |
.attr("width", 800) | |
.attr("height", 600) | |
.selectAll("circle") | |
.data( | |
d3.gridding() | |
.size([800, 600]) | |
.mode("vertical")(d3.range(10)) | |
) | |
.enter().append("circle") | |
.attr("r", 10) | |
.attr("transform", function(d) { | |
return "translate(" + d.cx + "," + d.cy + ")"; | |
}); | |
</script> | |
</body> |