Shifted line
A line plot with one line shifted by 2 months along the x-axis.
<Plot y={{ grid: true }}>
<Line data={aapl} x="Date" y="Close" />
<Line
{...shiftX(
{ data: aapl, x: 'Date', y: 'Close' },
'2 months'
)}
stroke="var(--svp-red)" />
</Plot>