Plot.plot({
width,
height: 520,
marginLeft: 80,
x: { axis: "top" },
y: { axis: null, domain: d3.sort(data, order).map((d) => d.name) },
marks: [
() => htl.svg`<defs>
<linearGradient id="gradient">
<stop offset="0" stop-color="black"></stop>
<stop offset="1" stop-color="#ccc"></stop>
</linearGradient>
</defs>`,
Plot.rect(data, {
x1: "start",
x2: (d) => d.end ?? max,
y: "name",
fill: (d) => (d.end ? `url(#gradient)` : "black"),
insetTop: 6,
insetBottom: 6
}),
Plot.gridX({
ticks: "3 months",
stroke: "white",
strokeOpacity: 1,
strokeWidth: 3
}),
Plot.dot(data, {
x: "end",
y: "name",
r: 2.5,
fill: "currentColor"
}),
Plot.text(data, {
x: "start",
y: "name",
dx: -4,
text: "name",
textAnchor: "end",
fillOpacity: (d) => (d.end ? 0.6 : 1)
})
]
})