LCLiveCharts
Recipes

Just a line

Minimal chrome — only the moving stroke

<LiveChart
  data={data}
  value={value}
  theme="light"
  color="#94a3b8"
  badge={false}
  fill={false}
  grid={false}
  pulse={false}
  momentum={false}
  scrub={false}
  window={30}
/>

Everything LiveCharts can do is opt-in. If you only need a line that moves when a number changes, this is enough.

Long-form walkthrough: demo — Just a line.