chart = {
const svg = d3
.create("svg")
.attr("viewBox", [0, 0, width, height])
.style("overflow", "visible");
svg
.append("circle")
.attr("id", "circle1")
.attr("cx", 300)
.attr("cy", 200)
.attr("r", 180);
svg
.append("circle")
.attr("id", "circle2")
.attr("cx", 500)
.attr("cy", 200)
.attr("r", 180);
svg
.append("circle")
.attr("id", "circle3")
.attr("cx", 400)
.attr("cy", 350)
.attr("r", 180);
return svg.node();
}