Plot.plot({
height: 800,
width: 1000,
y: {grid: false, label: "Date", domain: [new Date("2023-12-31"), new Date("1994-01-01")]},
x: { domain: [0, 100]},
color: {
legend: true,
scheme: "Set3",
opacity: 0.3,
marginLeft: 275
},
marks: [
Plot.axisY({ticks: "5 years"}),
Plot.axisX({ticks: 2}),
Plot.lineX(info, {y: "date", x: "percent", stroke: "steelblue", strokeWidth: 2.5, curve: "catmull-rom" }),
Plot.areaX(info, {y: "date", x: 100, fillOpacity: 0.2, fill: "category",}),
]
})