Created
May 23, 2016 04:07
-
-
Save jiankuang/cb2d44ec1aa38bccf7083f5ff9025890 to your computer and use it in GitHub Desktop.
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
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://dimplejs.org/dist/dimple.v2.1.6.min.js"></script> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
var svg = dimple.newSvg("body", 800, 600); | |
var data = [ | |
{ "Word":"Hello", "Awesomeness":2000 }, | |
{ "Word":"World", "Awesomeness":3000 } | |
]; | |
var chart = new dimple.chart(svg, data); | |
chart.addCategoryAxis("x", "Word"); | |
chart.addMeasureAxis("y", "Awesomeness"); | |
chart.addSeries(null, dimple.plot.bar); | |
chart.draw(); | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment