Plot.plot({
marginLeft: 80,
padding: 0,
height: 400,
style: {fontSize: 12, fontFamily: "IBM Plex Sans"},
y: {tickFormat: Plot.formatMonth("en", "long"), nice: true},
marks: [
Plot.cell(bordGais, Plot.group({fill: "max"}, {
x: (d) => d.date.getUTCDate(),
y: (d) => d.date.getUTCMonth(),
fill: "export",
inset: 0.5, title: (d) => `On ${(d.date).toLocaleString("en-IE", {day: "numeric", month: "long", year: "numeric"
})}, the export was ${format(d.export)+"kW"}`})),
],
color: {scheme: "Turbo", type: "linear", domain: [0,20], range: [0,1], legend: true}
})