chart = {
const svg = d3.select(DOM.svg(width, height))
.style("width", "50%")
.style("height", "auto")
.style("font", "10px sans-serif");
svg.selectAll("rect")
.data([100, 150, 225])
.enter()
.append("rect")
.attr("x", function(d, i) {
return i * (width / 3 + 15);
})
.attr("y", function(d) {
return height - (d);
})
.attr("width", width / 3 - 30)
.attr("height", function(d) {
return d;
})
return svg.node();
}