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.
LiveChartSeries draws multiple line series that share an axis, time window, and crosshair.
Pass a SharedValue<SeriesConfig[]>.
series.modify(...) (mutating each entry’s data array and value), or replace the whole array
with series.set(...). Avoid series.value = ....
Series options
EachSeriesConfig supports:
| Field | Purpose |
|---|---|
id | Stable identifier (required) |
data | LiveChartPoint[] history (required) |
value | Latest live value for interpolation (required) |
color | Line color (falls back to the built-in series palette) |
label | Legend chip text |
visible | Show/hide the series (default true) |
style | "solid" or "dashed" (with intervals) |
strokeWidth | Per-series width override |
glow | Soft glow behind the line |
kind | "outcome" (default) or "derived" (subdued/dashed chip) |
Legend
The legend renders toggle chips by default. Configure it with thelegend prop, and listen for
taps with onSeriesToggle:
Per-series dots
Thedot prop controls the live dots, their pulse, value lines, and inline labels:
LiveChartSeries reference.