react d3 core components for reusability.
react-d3-core is includes the core components of the react-d3 projects. The reason we extract the main component here, is because of reusability. For instance, we use grid, axes over and over again in line chart, area chart, bar chart ... etc. If we move these system a little bit forward to a react component we can declare it more easily in the future.
Such as we need xaxis, yaxis, grid in a new chart. We can install react-d3-core and import them.
npm install react-d3-core
- Legend
"use strict";varReact=require('react');varReactDOM=require('react-dom');varLegend=require('../../lib/index').Legend;(function(){varchartSeries=[{field: 'Under 5 Years'},{field: '5 to 13 Years'}]ReactDOM.render(<div><svgwidth={960}height={500}><rectheight={"100%"}width={"100%"}fill={"#CCC"}/></svg><Legendwidth={960}chartSeries={chartSeries}/></div>,document.getElementById('blank-legend'))})()Clone code react-d3-core.js or minify js react-d3-core.min.js and include the script in your HTML.
You'll also need react, react-dom, d3
- Legend
<!DOCTYPE html><html><head><title>
Line Chart example
</title></head><body><divid="blank-legend"></div><scriptsrc="https://fb.me/react-0.14.2.js"></script><scriptsrc="https://fb.me/react-dom-0.14.2.js"></script><scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.min.js"></script><scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script><scriptsrc="../react-d3-core.min.js"></script><scripttype="text/babel">varLegend=ReactD3Core.Legend;varchartSeries=[{field: 'Under 5 Years'},{field: '5 to 13 Years'}]ReactDOM.render(<div><svgwidth={960}height={500}><rectheight={"100%"}width={"100%"}fill={"#CCC"}/></svg><Legendwidth={960}chartSeries={chartSeries}/></div>,document.getElementById('blank-legend'))</script></body></html>$ npm install
$ node devServer.js
Open localhost:5000/example
- Initial release
- Babel 5
- D3 3.0
- Move to Babel 6.
- D3 4.0.
- improve example folder.
Apache 2.0