bounds.append("g")
.attr("fill", "steelblue")
.selectAll("rect")
.data(data)
.join("rect")
.attr("x", d => xScale(d.year))
.attr("y", d => yScale(d[name]))
.attr("height", d => dimensions.boundedHeight - yScale(d[name]))
.attr("width", xScale.bandwidth());