Created
June 12, 2016 15:34
-
-
Save petebrowne/8dec758c4952a388530e81055345360e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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