Plot.plot({
x: { axis: null },
y: { tickFormat: "s", grid: true },
color: { scheme: "spectral", legend: true },
fy: {
label: null,
axis: null
},
marks: [
Plot.barY(dataByGender, {
x: "key",
y: "population",
fill: "key",
fx: "state",
fy: "gender",
sort: { x: null, color: null, fx: { value: "-y", reduce: "sum" } }
}),
Plot.ruleY([0]),
Plot.text(
dataByGender,
Plot.selectFirst({
text: (d) => d.gender,
fx: ["CA"],
frameAnchor: "top-left",
dy: 3,
dx: 3
})
)
]
})