Plot.plot({
title: "Pizza with the Best Seller 2020–2022",
width: width,
height: 500,
marginRight: 120,
color: {
legend: true,
label: "Performance",
domain: ["Best Seller", "Others"],
range: ["blue", "yellow"],
},
marks: [
Plot.lineY(
pizza.filter(d => d.name !== bestSelling),
Plot.binX(
{ y: "sum" },
{
x: "order_date",
y: "orders",
z: "name",
stroke: () => "Others",
strokeWidth: 1,
interval: d3.utcWeek,
tip: true,
}
)
),
Plot.lineY(
pizza.filter(d => d.name === bestSelling),
Plot.binX(
{ y: "sum" },
{
x: "order_date",
y: "orders",
z: "name",
stroke: () => "Best Seller",
strokeWidth: 5,
interval: d3.utcWeek,
tip: true,
}
)
)
]
});