Plot.plot({
width,
y: { label: "↑ Job vacancies, seasonally adj. (thousands)", grid: true },
marks: [
Plot.areaY(vacancies, {
x: "month",
y: "vacancies",
curve: "step-before",
interval: "quarter",
fill: "pink"
}),
Plot.lineY(vacancies, {
x: "month",
y: "vacancies",
curve: "step-before",
interval: "quarter"
}),
Plot.ruleY([0])
]
})