Using d3-gridding Built with blockbuilder.org
Last active
December 17, 2017 14:35
-
-
Save romsson/dcfddedebaeb399fd06f65b7d53bbd3e to your computer and use it in GitHub Desktop.
nested rectangles (grids)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: mit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
font-family: Helvetica; | |
font-size: 20px; | |
} | |
rect { | |
fill: none; | |
stroke: black; | |
stroke-width: 1; | |
} | |
</style> | |
<body> | |
<script src="http://d3js.org/d3.v4.js"></script> | |
<script src="http://romsson.github.io/d3-gridding/build/d3-gridding.js"></script> | |
<script> | |
var width = 400, | |
height = 400; | |
// params to play with | |
var n = 9, | |
data = d3.range(n), | |
max_depth = 4; | |
var svg = d3.select("body") | |
.append("svg") | |
.attr("width", width) | |
.attr("height", height) | |
var root_params = { | |
"size": [width, height], | |
"offset": [0, 0], | |
"mode": "grid" | |
}; | |
function generate_layout(params, data = d3.range(9), depth = 0) { | |
var gridding = d3.gridding() | |
.params(params); | |
var griddingData = gridding(data); | |
draw(griddingData); | |
griddingData.forEach(function(d) { | |
if(Math.random() > (depth / 10) && depth < max_depth) { | |
var node_params = { | |
"size": [d.width, d.height], | |
"offset": [d.x, d.y], | |
"mode": "grid" | |
}; | |
generate_layout(node_params, data, depth+1); | |
} | |
}); | |
} | |
function draw(griddingData) { | |
var id = Math.floor(Math.random(100) * 10000000000); | |
var squares = svg.selectAll("#square_" + id) | |
.data(griddingData, function(d) { return d; }); | |
squares.enter().append("rect") | |
.attr("class", "square") | |
.attr("id", "square_" + id) | |
.attr("width", function(d) { return d.width; }) | |
.attr("height", function(d) { return d.height; }) | |
.attr("transform", function(d) { | |
return "translate(" + d.x + "," + d.y + ")"; | |
}); | |
} | |
generate_layout(root_params); | |
</script> | |
</body> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment