Plot.plot({
marks: [
Plot.barY(budgetLongTable, {x: "Year", y: "Budget", fx: "Category", stroke: "white", strokeWidth: 2, fill: "Category"}),
Plot.ruleY([300], {opacity: 0.05}),
Plot.ruleY([0], {opacity: 0.9}),
Plot.gridY(),
],
height: 500,
width: 800,
marginLeft: 100,
marginRight: 20,
marginTop: 50,
marginBottom: 50,
color: {
legend: false,
range: colours
},
title: "City of Toronto Budget Allocated to Parks & Recreation"
})