An open API service indexing awesome lists of open source software.

https://github.com/oslabs-beta/d3reactor

d3reactor is a data visualization library using the latest features from React and D3 (v6+) to make modern, visually appealing, performant charts more accessible to all developers, not just data visualization experts.
https://github.com/oslabs-beta/d3reactor

chart charts d3 data-visualization react

Last synced: 7 months ago
JSON representation

d3reactor is a data visualization library using the latest features from React and D3 (v6+) to make modern, visually appealing, performant charts more accessible to all developers, not just data visualization experts.

Awesome Lists containing this project

README

          

# d3reactor

An open-source library of charts for creating performant, responsive data visualizations built with React and D3.

The main goal of this library to help you create customizable charts easily.

# Installation
Let's get your first d3reactor chart setup in less < 5 minutes.

## Install the d3reactor package
```
npm install d3reactor
```
OR
```
yarn add d3reactor
```

## Import d3reactor into your React project

```
import * as d3reactor from "d3reactor"
```

OR you can import each chart separately

```
import {AreaChart, BarChart, PieChart, ScatterPlot, LineChart} from "d3reactor"
```

# Examples

```

```

And you're good to go!

Stacked Bar Chart

# Documentation

For detailed information, please follow the links below:

* [d3reactor](https://www.d3reactor.com/)
* [Area Chart](https://www.docs.d3reactor.com/docs/Charts/area-chart)
* [Bar Chart](https://www.docs.d3reactor.com/docs/Charts/bar-chart)
* [Line Chart](https://www.docs.d3reactor.com/docs/Charts/line-chart)
* [Pie Chart](https://www.docs.d3reactor.com/docs/Charts/pie-chart)
* [Scatter Plot](https://www.docs.d3reactor.com/docs/Charts/scatter-plot)