Data visualization library for React
REAVIZ is a modular chart component library that leverages React natively for rendering the components while using D3js under the hood for calculations. The library provides an easy way to get started creating charts without sacrificing customization ability.
If you are looking for workflow/diagram graphs, checkout reaflow.
If you are looking for webgl-based network graphs, checkout reagraph.
Chart types include:
Additional features:
To use reaviz in your project, install it via npm/yarn:
npm i reaviz --save
then import a chart type into your JSX element:
import { BarChart } from 'reaviz';
const data = [
{ key: 'IDS', data: 14 },
{ key: 'Malware', data: 5 },
{ key: 'DLP', data: 18 }
];
const App = () => <BarChart width={350} height={250} data={data} />;
Checkout this demo live or visit the demos page to learn more!
If you want to run REAVIZ locally, its super easy!
yarn install
yarn start
Thanks to all our contributors!