d3
   .selectAll("circle")
   .attr("fill", "hotpink")
   .attr("r", (d, i) => 10 + i * 5);
