lucify-small-line-chart
v0.1.6
Published
A React component that shows a small line chart, useful for linked small multiples
Downloads
5
Maintainers
Readme
A line chart React component
About
A controlled React component that shows a small line chart, useful for linked small multiples. Built using React and D3.js
Example of linked charts (code):
This is a pre-release of a package belonging to the Lucify platform. It has been published to satisfy dependencies of other packages. Any APIs may change without notice.
Installation
Add lucify-small-line-chart
along with its dependencies (React.js and
D3.js) to your project's dependencies:
$ npm install react d3 lucify-small-line-chart --save
Require it in your Javascript:
ES5
var LucifySmallLineChart = require('lucify-small-line-chart').default;
ES6
import LucifySmallLineChart from 'lucify-small-line-chart';
Now you can use it like any other React component.
Note: this component has only been tested to work with React 0.13. It should work with React 0.14 as well, but we can't confirm it at this point.
Props
[TODO: explain these]
data: React.PropTypes.arrayOf(React.PropTypes.array),
margin: React.PropTypes.objectOf(React.PropTypes.number),
xFormat: Format function for selected (hovered) x-value (optional)
yFormat: Format function for selected (hovered) y-value (optional)
yTickFormat: Format function for y-axis tick labels (optional)
xTickFormat: Format function for x-axis tick labels (optional)
xTickMargin: React.PropTypes.number,
transitionLength: React.PropTypes.number,
selectedX: React.PropTypes.number,
onSelectedChange: React.PropTypes.func,
minY: Minimum value for y-axis. Optional, useful for small multiples.
maxY: Maximum value for y-axis. Optional, useful for small multiples.
width: Width for the component. Default is
150
.height: Height for the component. Default is
null
.aspectRatio: Aspect ratio for calculating height based on width. This has no effect when the
height
prop is notnull
. Default value is1.0
Development
Build the Javascript files into lib/
with:
$ npm run build
Or build the development version and start watching for changes with:
$ npm run dev
To serve the example page on port 3000 and see changes live, start Gulp:
$ gulp
Then point your browser to http://localhost:3000/
Developing as part of a project
To develop this component in tandem with a parent project using npm link
,
first link this project to the parent project:
$ cd path_to_this_project
$ npm link
$ cd path_to_parent_project
$ npm link lucify-small-line-chart
Then link the parent project's React folder to this project:
$ cd path_to_parent_project
$ cd node_modules/react
$ npm link
$ cd path_to_this_project
$ npm link react
This is needed in order to prevent React from being loaded twice.
Note that if you do not use Webpack to build your parent project, the
development build will likely not work. You can build the production version
while watching for changes by running node_modules/.bin/webpack -p --watch
.