{
const svg = d3
.create("svg")
.attr("width", width)
.attr("height", height)
.style("overflow", "visible");
const g = svg.append("g");
g.selectAll("path.links")
.data(updatedCoords.filter((d) => d.parent))
.join("path")
.attr("d", (d) => link(d))
.attr("stroke", "black");
const nodes = g
.selectAll("g.node")
.data(updatedCoords)
.join("g")
.attr("transform", (d) => `translate(${d._newX},${d._newY})`);
nodes.append("circle").attr("r", 3);
nodes
.append("text")
.text((d) => d.data.name)
.attr("font-size", 10)
.attr("transform", "translate(3.5,-5) rotate(-90)")
.attr("stroke", "white")
.attr("stroke-width", 5)
.clone(true)
.attr("stroke", "none");
return svg.node();
}