Plot.plot({
height: 720,
axis: null,
y: {domain: [0, step]},
color: {scheme: "YlGnBu"},
facet: {data: industries, y: "industry"},
marks: [
d3.range(bands).map((i) => Plot.areaY(industries, {x: "date", y: (d) => d.unemployed - i * step, fill: i, clip: true})),
Plot.text(industries, Plot.selectFirst({text: "industry", frameAnchor: "top-left", dx: 6, dy: 6})),
Plot.frame()
]
})