Created
July 5, 2012 10:10
-
-
Save tsyber1an/3052772 to your computer and use it in GitHub Desktop.
nvd3 example
This file contains hidden or 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
#stats{style: "height: 500px;"} | |
%svg |
This file contains hidden or 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
drawChart = (data) -> | |
nv.addGraph -> | |
chart = nv.models.multiBarChart() | |
chart.xAxis.tickFormat (d) -> | |
d3.format(",f") d | |
chart.yAxis.tickFormat (d) -> | |
d3.format("f") d | |
d3.select("#stats svg").datum(data).transition().duration(500).call chart | |
nv.utils.windowResize chart.update | |
chart | |
drawChart request_stats.datum | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment