chart = {
const svg = d3.create("svg")
.attr("title", data.barChartSVGTitle)
.attr("class", "chart")
.attr("viewBox", [0, 0, width, height]);
const defs = svg
.append("defs");
const pencil = DOM.uid("pencil");
defs.append("filter").attr("id", pencil.id)
.html(`<feTurbulence baseFrequency="0.01" numOctaves="6" type="fractalNoise" />
<feDisplacementMap scale="4" in="SourceGraphic" xChannelSelector="R" yChannelSelector="G" />
<feGaussianBlur stdDeviation="0.5" />`)
svg.append("g")
.attr("class", "chart-title")
.call(chartTitle);
svg.append("g")
.attr("class", "bars")
.selectAll("rect")
.data(data)
.join("rect")
.attr("role", "presentation")
.attr("class", "bar")
.attr("x", d => x(d.x))
.attr("y", d => y(d.y))
.attr("width", x.bandwidth())
.attr("height", d => y(0) - y(d.y))
.style("fill", barColor);
svg.append("path")
.attr("id", "linear-regression-fitted-line")
.datum(regressionEndpoints)
.attr("fill", "none")
.attr("filter", pencil)
.attr("stroke", "#534e7a")
.attr("stroke-width", 3)
.attr("stroke-linejoin", "round")
.attr("stroke-linecap", "round")
.attr("d", d3.line()
.x(d => x(d.x))
.y(d => y(d.y)));
svg.append("g")
.attr("class", "chart-by")
.call(chartBy)
return svg.node();
}