react-svg-graph-bradchristensen
v1.2.1
Published
An SVG-based graph component for React
Downloads
4
Maintainers
Readme
React SVG Graph
A simple svg-based graph component for React that plots the given data as either a bar or line graph. Any changes to the data will trigger an animated transition between the old and new graph. The component accepts various props that allow you to set the sizing and behaviour of the graphs.
Inspired by libraries like d3.js and dc.js, this provides a simple component without any extra dependencies or the overhead of any libraries other than React.
:warning: Currently still a work in progress
** More features to come in the future **
Demo
jwarning.github.io/react-svg-graph
Options
Optional props to set on the component:
- graphType: 'bar' or 'line'
- data: an array of data to plot
- maxValue: maximum value of the y axis
- width: width of the graph
- height: height of the graph
- leftPadding: amount of padding on the left of the graph in px
- topPadding: amount of padding on the top of the graph in px
- rightPadding: amount of padding on the right of the graph in px
- bottomPadding: amount of padding on the bottom of the graph in px
The data points should be structured in an array as follows:
[{
id: // key of the point (will appear on the x axis),
value: // numeric value of the point
}, ...]
To build a CommonJS version of this file simply run gulp build
.
If you want a different output type you can simply set the option on the Babel
step in the gulpfile. A build is already included in the dist folder.