chart = {
const svg = d3.select(DOM.svg(width, height))
.style("font", "10px sans-serif");
svg.selectAll("dot")
.data(data)
.enter().append("circle")
.attr("r", radius)
.attr("cx", function(d) { return d[0]; })
.attr("cy", function(d) { return d[1]; });
return svg.node();
}