Unit label tick format
<Plot
y={{
tickFormat: (d, i, ticks) =>
`${d}${i === ticks.length - 1 ? ' USD' : ''}`
}}>
<Line data={aapl} x="Date" y="Close" />
</Plot><Plot
y={{
tickFormat: (d, i, ticks) =>
`${d}${i === ticks.length - 1 ? ' USD' : ''}`
}}>
<Line data={aapl} x="Date" y="Close" />
</Plot>