function bumpMarks(data, { r = 3, curve = "bump-x", tip, ...options }) {
options = Plot.stackY2(options);
return Plot.marks(
Plot.line(data, { ...options, tip, stroke: options.z, curve, fill: null }),
Plot.dot(data, { ...options, fill: options.z, r }),
Plot.text(data, { fill: options.z, dy: -9, ...options, text: options.y }),
Plot.text(
data,
Plot.selectFirst({
...options,
text: options.z,
dx: -(5 + (r || options.strokeWidth / 2)),
textAnchor: "end",
fill: "currentColor"
})
),
Plot.text(
data,
Plot.selectLast({
...options,
text: options.z,
dx: 5 + (r || options.strokeWidth / 2),
textAnchor: "start",
fill: "currentColor"
})
)
);
}