Lightweight react chart components
npm install graph-ui-components#React Chart component
Basic chart components for your react app
Examples: https://gijserenstein.github.io/react-chart-ui-components/
##Line Chart:
####Code example
``jsx
import { LineChart } from "graph-ui-components";
`
####Options:
- values - array of valuesprefix
- - prefixes the values shown in the tooltipspostfix
- - postfix for the values shown in the tooltiprounded
- - round the edges in the line chartcolor
- - hex color for the chartaxis
- - positions on the axisdecimals
- - the value's decimals
##Circle Chart:
####Code example
`jsx
import { CircleChart } from "graph-ui-components";
`
####Options:
- value - value displayedmaxValue
- - the range of the chartprefix
- - prefix for the valuepostfix
- - postfix for the valuemetric
- - name of the metric showncolor
- - hex color for the chartdecimals` - the value's decimals
-