Plot.plot({
width: width,
height: 420,
marginRight: 120,
marks: [
Plot.lineY(pizza.filter(d => d.name !== "Veggie Pizza Small"), Plot.binX({y: 'sum'}, {
x: "order_date",
y: "orders",
z: "name",
interval: d3.utcWeek,
tip: true,
stroke: "lightgrey",
strokeWidth: 0.85,
})),
Plot.lineY(pizza.filter(d => d.name === "Veggie Pizza Small"), Plot.binX({y: 'sum'}, {
x: "order_date",
y: "orders",
z: "name",
interval: d3.utcWeek,
tip: true,
stroke: "#00ad85",
strokeWidth: 2,
})),
Plot.text(pizza.filter(d => d.name === "Veggie Pizza Small"), Plot.selectLast({x: "order_date", y: 1750, text: "name", textAnchor: "start", dx: 3}))
]
})