reaviz alternatives and similar libraries
Based on the "Chart" category.
Alternatively, view reaviz alternatives based on common mentions on social networks and blogs.
-
victory
A collection of composable React components for building interactive data visualizations -
react-chartjs-2
React components for Chart.js, the most popular charting library -
react-sparklines
Beautiful and expressive Sparklines React component -
react-google-charts
A thin, typed, React wrapper over Google Charts Visualization and Charts API. -
react-timeseries-charts
Declarative and modular timeseries charting components for React -
rumble-charts
React components for building composable and flexible charts -
react-sigmajs
Lightweight React library for drawing network graphs built on top of SigmaJS -
d3-react-squared
Lightweight event system for (d3) charts and other components for ReactJS. -
react-micro-bar-chart
React component for micro bar-charts rendered with D3 -
Flowchart React
Lightweight flowchart & flowchart designer for React.js. -
JSCharting for React
Official JSCharting React Plugin & Examples -
essential js 2 charts
Beautiful and interactive charts & graphs for react.
A Non-Cloud Alternative to Google Forms that has it all.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of reaviz or a related project?
README
Data visualization library for React based on D3js
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. Check it out.
๐ Quick Links
- Checkout the demos and docs
- Learn about updates from the [changelog](CHANGELOG.md)
โจ 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
- Bubble Chart
- Linear
- Radial
- Scatter Chart
- Linear
- Radial
- Pie Chart
- Standard
- Exploded
- Donut Chart
- Sankey chart
- Hive Plot
- Gauge
- Radial
- Linear
- Map Chart
- Heatmap
- Standard
- Year Calendar
- Month Calendar
Additional features:
- Legend
- Discrete
- Sequential
- Axis
- Linear
- Radial
- Advanced Label Positioning
- Gestures
- Pinch
- Pan
- Zoom
- Move
- 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
- 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} />;
Visit the demos page to learn more!
๐ญ Development
If you want to run REAVIZ locally, its super easy!
- Clone the repository
yarn install
yarn start
- Browser opens to Storybook page
to publish the repo to git you can run:
yarn version --new-version x.x.x
to bump the versiongit push --follow-tags
*Note that all licence references and agreements mentioned in the reaviz README section above
are relevant to that project's source code only.