{
const height = 600
const width = 600
const margin = ({top: 30, right: 40, bottom: 40, left: 50})
const svg = d3.select(DOM.svg(width, height))
const group = svg.selectAll("g").data(data).join("g")
.attr("transform",(d,i)=> "translate("+(d.x*50)+","+(d.y*50)+")" )
group.selectAll("circle").data(d=>d.data).join("circle")
.attr("cx",(d,i)=> d*5)
.attr("cy",(d,i)=> d*5)
.attr("r",(d,i)=> d*2)
.style("fill","steelblue")
return svg.node();
}