{
const width = 600
const height = 400
const canvas = d3.select(DOM.svg(width, height))
canvas.selectAll("circle")
.data(drawingCircles)
.join("circle")
.attr("cx", (d,i)=> i*30)
.attr("cy", (d,i)=> height - (i*20))
.attr("r", (d,i)=> d)
return canvas.node();
}