timelineChart = Plot.plot({
y: { type: "time", domain: [new Date("Jan 2024"), new Date("jan 2016")] },
marks: [
Plot.ruleX([0]),
Plot.dot(timeline, { y: "date", x: 0, fill: "orange" }),
Plot.text(timeline, {
y: "date",
x: 0,
text: "entry",
textAnchor: "start",
dx: 10
})
]
})