1.0.11 • Published 10 months ago
react-jschart v1.0.11
🔥This is an open-source React component library🔥.
Screenshot
Installation
😍Install the package in your project directory with 😍:
npm npm i react-jschart
Documentation
Example
...
import { RadialChart } from 'prateeksahu'
<RadialChart
animate
arcColor="#71347B"
backgroundColor="#F0E7F4"
label="pass"
lineCap="round"
lineWidth={15}
onClick={() => {}}
radius={66}
total={100}
value={70}
/>
<RadialChart
lineWidth={5}
onClick={() => {}}
radius={15}
statusValues={[
{
status: 'Passed',
value: 40
},
{
status: 'Failed',
value: 20
},
{
status: 'Warning',
value: 20
},
{
status: 'Skipped',
value: 20
}
]}
/>
...