chart = (data) => Plot.plot({
width: Math.min(width, 600),
height: 200,
marginLeft: 70,
y: {
label: "",
grid: false,
domain: d3.sort(data, d => -d.key).map(d => d.key)
},
x: {
label: '2020 census population in district',
labelAnchor: 'center',
grid: true,
},
color: {
range: ['#dd9650','#68a9a7','#f1bc4c','#7b9a85','#5e9ebc']
},
marks: [
Plot.barX(data, {
y: "key",
x: d => d.value,
title: d => d.value,
fill: (d,i) => i
}),
Plot.ruleX([216845], {stroke: "#222", strokeWidth: 2}),
Plot.text([{key: 'District 1', value: 216845, label: 'Even split'}], {
x: d => d.value,
y: 'key', text: d => d.label,
textAnchor: 'start',
dx: 5,
dy: -9,
}),
]
})