chart = Plot.plot({
height: 1100,
width: 928,
x: {axis: "top"},
y: {domain: [0, step], axis: null},
fy: {axis: null, domain: traffic.map((d) => d.name), padding: 0.05},
color: {
type: "ordinal",
scheme: "Greens",
label: "Vehicles per hour",
tickFormat: (i) => ((i + 1) * step).toLocaleString("en"),
legend: true
},
marks: [
d3.range(bands).map((band) => Plot.areaY(traffic, {x: "date", y: (d) => d.value - band * step, fy: "name", fill: band, sort: "date", clip: true})),
Plot.axisFy({frameAnchor: "left", dx: -28, fill: "currentColor", textStroke: "white", label: null})
]
})