Plot.plot({
width: width,
height: 420,
marginRight: 120,
color: {
legend: true,
scheme: "OrRd",
label: "Orders"
},
marks: [
Plot.lineY(pizza, Plot.binX({y: 'sum'}, {
x: "order_date",
y: "orders",
z: "name",
interval: d3.utcWeek,
tip: true,
stroke: "orders"
})),
Plot.lineY(pizza, Plot.binX({y: 'sum'}, {
filter: p => p.name == pizza_max_order.name,
x: "order_date",
y: "orders",
z: "name",
interval: d3.utcWeek,
strokeWidth: 3,
stroke: "red"
}))
]
})