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.
Checkout Unify Viz, our premium offering 300+ Figma and React professionally designed data visualization
components. Learn more →
If you are looking for workflow/diagram graphs, checkout reaflow.
If you are looking for webgl-based network graphs, checkout reagraph.
🚀 Quick Links
✨ Features
Chart types include:
- Bar Chart
- Single Series Vertical / Horizontal
- Multi Series Vertical / Horizontal
- Stacked Vertical / Horizontal
- Stacked Normalized Vertical / Horizontal
- Stacked Diverging Vertical / Horizontal
- Marimekko
- Radial
- Sparkline
- Waterfall
- Line Chart
- Single Series
- Multi Series
- Stacked
- Stacked Normalized
- Radial
- Sparklines
- Area Chart
- Single Series
- Multi Series
- Stacked
- Stacked Normalized
- Radial
- Sparklines
- Scatter Chart
- Pie Chart
- Standard
- Exploded
- Donut Chart
- Sankey chart
- Gauge
- Radial
- Linear
- Stacked Radial
- Map Chart
- Heatmap
- Standard
- Year Calendar
- Month Calendar
- Venn Diagram
- Bubble Chart
- Treemap
- Bar List
- Meter
- Spider / Radar
- Funnel Chart
Additional features:
- Legend
- Axis
- Linear
- Radial
- Advanced Label Positioning
- Gestures
- Tooltip
- Single Value
- Grouped Values
- Line/Area Series Symbols
- Animations Enter/Update/Exit
- Brush
- Patterns
- Gradients
- Grid Lines
- Mark Lines
- BigInt Support
- Auto Sizing
- Bar Guidelines
- Range Lines
- Animated Counts
- SSR
📦 Install
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!
🔭 Development
If you want to run REAVIZ locally, its super easy!
- Clone the repository
npm i
npm start
- Browser opens to Storybook page
❤️ Contributors
Thanks to all our contributors!