Skip to content

Instantly share code, notes, and snippets.

@petebrowne
Created June 12, 2016 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petebrowne/8dec758c4952a388530e81055345360e to your computer and use it in GitHub Desktop.
Save petebrowne/8dec758c4952a388530e81055345360e to your computer and use it in GitHub Desktop.
render() {
let {value, label, fill, innerRadius = 0, outerRadius, cornerRadius, padAngle} = this.props;
let arc = d3.svg.arc()
.innerRadius(innerRadius)
.outerRadius(outerRadius)
.cornerRadius(cornerRadius)
.padAngle(padAngle);
return (/* */);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment