checkerboardChart = {
const svg = d3.create("svg")
.attr("title", "Unlabelled chart")
.attr("class", "chart")
.attr("viewBox", [0, 0, width, height]);
const defs = svg
.append("defs");
const checkboardSize = x.bandwidth() / width * 100;
const checkboardPattern = defs.append("pattern")
.attr("id", "checkboard")
.attr("width", checkboardSize * 2)
.attr("height", checkboardSize * 2)
.attr("patternUnits","userSpaceOnUse")
.html(`<rect width="${checkboardSize}" height="${checkboardSize}" fill="${activeColor}" />
<rect x="${checkboardSize}" y="${checkboardSize}" width="${checkboardSize}" height="${checkboardSize}" 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(#checkboard)");
svg.append("g")
.attr("class", "chart-by")
.call(chartBy)
return svg.node();
}