d3-rs-pies
generate a range of pie charts via the D3 reusable chart convention.
View @redsift/d3-rs-pies on Codepen
<script src="//static.redsift.io/reusable/d3-rs-pies/latest/d3-rs-pies.umd-es2015.min.js"></script>
<script>
var chart = d3_rs_lines.html();
d3.select('body').datum([ 1, 2, 3, 10, 100 ]).call(chart);
</script>
import { chart } from "@redsift/d3-rs-pies";
let eml = chart.html();
...
var chart = require("@redsift/d3-rs-pies");
var eml = chart.html();
...
- Simplest form, array of numbers:
[1,2,3,4...]
Property | Description | Transition | Preview |
---|---|---|---|
classed |
String SVG custom class | N | |
width , height , size , scale |
Integer SVG container sizes | Y | |
style |
String Custom CSS to inject into chart | N | |
outerRadius |
Integer Radius of the pie | ||
innerRadius |
Number > 0 the radius of the inner region in pixels. < 0, the unit inner radius as a function of the outerRadius |