mobilityChart = Plot.plot({
y: {
grid: true,
label: "Fahrgäste im öffentlichen Verkehr"
},
x: {
label: ""
},
marginLeft: 50,
marks: [
Plot.line(public_transport, {x: "week_start_day", y: "riders", strokeWidth: 2, curve: "monotone-x", stroke: "#008f5d"})
]
})