chart2 = {
const svg = d3.create("svg").attr("width", width).attr("height", height);
const myColors = ["red", "orange", "purple", "teal", "black", "gray"];
svg
.selectAll("circle")
.data(data)
.join("circle")
.transition()
.duration(5000)
.delay((d, i) => i * 200)
.ease(d3.easeCubic)
.attr("cx", (d) => x(d.age))
.attr("cy", (d) => y(d.wt))
.attr("r", 10)
.attr("fill", (d, i) => myColors[i]);
return svg.node();
}