Plot.plot({
color: { legend: true },
y:{ label: "Orders"},
x: {label: "Days of the Week", grid: true, tickFormat: (n) => weekdays[Math.round(n)]},
marks: [
Plot.barY(
pizza,
Plot.binX(
{ y: "sum" },
{ x: "day_of_week", y: "orders", fill: "Category", tip: true, }
)
),
Plot.ruleY([0])
]
})