Plot.plot({
insetRight: 10,
height: 790,
style: "overflow: visible;",
marks: [
Plot.text(
ipos,
Plot.dodgeY({
x: "date",
r: "rMVOP",
text: (d) => (d.rMVOP / 1e3).toFixed(1),
title: "NAME",
fontSize: (d) => Math.min(22, Math.cbrt(d.rMVOP / 1e3) * 6)
})
)
]
})