Scrubbing is on by default. Drag across the chart to reveal a vertical crosshair, a dimmed region ahead of it, and a tooltip pill with the value and time under your finger.Documentation Index
Fetch the complete documentation index at: https://brandtnewlabs.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
scrub={false}, or configure the crosshair and tooltip:
Reading the scrub position (single series)
onScrub fires with a ScrubPoint while scrubbing, and null when it ends. It runs on the JS
thread, so you can call React setState directly:
Multi-series scrub (worklet)
ForLiveChartSeries, onScrub is a worklet that runs on the UI thread each frame with a
ScrubPointMulti (including a per-series value array). Write straight to a shared value with no
bridge overhead:
point.seriesValues is an array of { id, label, value } for each visible series at the scrub
time. See the types reference for the full payload shape.