- Check out the demo
- Doc is available here
npm install react-minigraph --save
yarn add react-minigraph
yarn install
yarn dev
import { MiniGraph, MiniGraphLine, MiniGraphNormalBand, MiniGraphAverage};
const data: number[] = [ /* Your data */ ];
<MiniGraph data={data}>
<MiniGraphLine curved filled />
<MiniGraphNormalBand />
<MiniGraphAverage />
</MiniGraphLine>
Will get you this:
Colours are automatically generated using chroma-js, if you don't specify the starting colour, it'll pick one randomly.
Check out drafted releases for future plans
This project was inspired by react-sparklines.