Created
February 23, 2016 05:43
-
-
Save benjaminmbrown/716b187c9ca49abccd1d 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
function render_plots(){ | |
yearRingChart | |
.width(200).height(200) | |
.dimension(yearDim) | |
.group(spendPerYear) | |
.innerRadius(50); | |
spenderRowChart | |
.width(250).height(200) | |
.dimension(nameDim) | |
.group(spendPerName) | |
.elasticX(true); | |
dc.renderAll(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment