chart = {
const svg = d3.select(DOM.svg(width, height));
svg.append("g")
.selectAll("rect")
.data(clean_avgLeaksPerInd)
.enter()
.append("rect")
.attr("x", d => x(d["Industry"]))
.attr("y", d => y(d["Average Leaks"]))
.attr("height", d => y(0) - y(d["Average Leaks"]))
.attr("width", x.bandwidth())
.attr("fill",
d => d3.scaleSequential(d3.interpolateBlues).domain([-5000000, 26000000])
(d["Average Leaks"]));
svg.append("g")
.call(xAxis);
svg.append("g")
.call(yAxis);
return svg.node();
}