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');
const bar = svg.append('g')
.selectAll('rect')
.data(data)
.join('rect')
.style("mix-blend-mode", "multiply")
.attr('fill', d => groupColors[d.group - 1])
.attr("x", d => xScale(d.name))
.attr('y', d => yScale(d.value))
.attr('width', xScale.bandwidth())
.attr('height', d => yScale(0) - yScale(d.value))
const percentFormatter = d3.format(".2~%")
const gx = svg.append('g').call(xAxis);
const gy = 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 Object.assign(svg.node(), {
update(order) {
xScale.domain(data.sort(order).map(d => d.name));
const t = svg.transition()
.duration(750);
bar.data(data, d => d.name)
.order()
.transition(t)
.delay((d, i) => i * 20)
.attr("x", d => xScale(d.name));
gx.transition(t)
.call(xAxis)
.selectAll(".tick")
.delay((d, i) => i * 20);
}
});
}