Chart

Time series

Web supportediOS supportedAndroid supported

Render tens of thousands of ordered time points efficiently.

uPlot, for dense series · View source

When to use

Use for dense telemetry. Prefer Line for small human-scale datasets.

Props

The chart's own props first, then the shared ones this form reads.

PropTypeDefaultDescription
points*ChartTimePointsParallel timestamp and value arrays optimized for density.
series*Omit<ChartSeries, "values">[]Series identity and colour only — the values live in points.
formatChartNumberFormatNumber formatting shared by axes, labels and tooltips.
axisChartAxes{ x: true, y: true }Horizontal and vertical axis visibility.
classNamestringCSS class applied to the chart root.
heightnumber240Plot height in px. A chart never measures its own content, so this is what reserves the space.
isLoadingbooleanfalseHeld true while the data is in flight. Shows the matching skeleton, then cross-fades into the plot.
skeletonReactNodeReplaces the built-in placeholder while isLoading is true. Takes a rendered element.
surfaceChartSurfaceThe container the plot sits in — background, border, corner radius, padding. Merges over Chart.Provider, key by key.