{
const svg = d3
.create("svg")
.attr("viewBox", [
-margin,
-margin,
width + margin * 2,
height + margin * 2
]);
svg
.selectAll(".node")
.data(layedOutIcicleData.descendants())
.join("g")
.attr("class", "node")
.attr("transform", d => `translate(${d.x0}, ${d.y0})`)
.call(g =>
g
.append("rect")
.attr("width", d => d.x1 - d.x0)
.attr("height", d => d.y1 - d.y0)
.attr("fill", d => color(d.data[0]))
)
.call(g =>
g
.append("text")
.attr("y", 10)
.call(text =>
text
.append("tspan")
.attr("x", 0)
.attr("dy", 0)
.text(d => d.data[0])
)
.call(text =>
text
.append("tspan")
.attr("x", 0)
.attr("dy", 10)
.text(d => d.value)
)
);
return svg.node();
}