PieChart generator in node.js.
npm install d3node-piechart
const d3n = require('d3node-piechart');
const pieChart = d3n({ data, selector, container, style })
Check out the example for usage.
npm run build
- Type:
Array
Data from file or web processed by d3 library.
- Type:
String
- Default:
'#chart'
DOM selector in container.
- Type:
String
- Default:
<div id="container"><h2>Pie Chart</h2><div id="chart"></div></div>
DOM contain the visualization result.
- Type:
String
- Default:
.arc text {
font: 10px sans-serif;
text-anchor: middle;
}
.arc path {
stroke: #fff;
}
PieChart style.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D