Elevation profile
While the x scale of a line chart often represents time, this is not required. For example, we can plot the elevation profile of a Tour de France stage.
<Plot
x={{ label: 'Distance from stage start (km)' }}
y={{
grid: true,
interval: 100,
label: 'Elevation (m)'
}}>
<Line data={tdf} x="distance" y="elevation" />
<RuleY y={0} />
</Plot>