hatchedChart = {
const svg = d3.create("svg")
.attr("title", "Unlabelled chart")
.attr("class", "chart")
.attr("viewBox", [0, 0, width, height]);
const defs = svg
.append("defs");
const hatchSize = 3;
const hatchPattern = defs
.append("pattern")
.attr("id", "hatch")
.attr("width", hatchSize)
.attr("height", hatchSize)
.attr("patternTransform", `rotate(45)`)
.attr("patternUnits","userSpaceOnUse")
.append("rect")
.attr("width", hatchSize/2)
.attr("height", hatchSize)
.style("fill", activeColor);
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", "url(#hatch)");
svg.append("g")
.attr("class", "chart-by")
.call(chartBy)
return svg.node();
}