chart = {
const svg = d3.create('svg')
.attr('viewBox', [0, 0, width, height])
.attr('style', 'font: 400 14px/1.5 "Work Sans", "Open Sans"; fill: #202630');
svg.append('g')
.selectAll('rect')
.data(data)
.join('rect')
.attr('fill', d => groupColors[d.group - 1])
.attr('x', (d,i) => xScale(i))
.attr('y', d => yScale(d.value))
.attr('width', xScale.bandwidth())
.attr('height', d => yScale(0) - yScale(d.value))
const percentFormatter = d3.format(".2~%")
svg.append("g")
.attr("fill", "#202630")
.attr("text-anchor", "middle")
.attr("font-family", "Work Sans")
.attr("font-size", 12)
.style("text-shadow", "white 1px 1px, white -1px -1px, white 1px -1px, white -1px 1px")
.selectAll("text")
.data(data)
.join("text")
.attr("x", (d, i) => xScale(i) + xScale.bandwidth() / 2)
.attr("y", d => yScale(d.value))
.attr("dy", "-.5em")
.text(d => percentFormatter(d.value));
svg.append('g').call(xAxis);
svg.append('g').call(yAxis);
svg.append("g")
.call(legend);
svg.append("text")
.attr("transform", `translate(0, 0)`)
.attr("dy", "1em")
.attr("text-anchor", "start")
.style("fill", "#202630")
.style("font-size", 18)
.html("Allocation of resources across groups");
return svg.node();
}