Created
June 9, 2013 20:22
-
-
Save abresler/5745063 to your computer and use it in GitHub Desktop.
Multibar Chart
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
<!doctype HTML> | |
<meta charset = 'utf-8'> | |
<html> | |
<head> | |
<link rel='stylesheet' href='http://nvd3.org/src/nv.d3.css'> | |
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js' type='text/javascript'></script> | |
<script src='http://d3js.org/d3.v2.min.js' type='text/javascript'></script> | |
<script src='http://nvd3.org/nv.d3.js' type='text/javascript'></script> | |
<script src='http://nvd3.org/lib/fisheye.js' type='text/javascript'></script> | |
<style> | |
.rChart { | |
display: block; | |
margin-left: auto; | |
margin-right: auto; | |
width: 800px; | |
height: 400px; | |
} | |
</style> | |
</head> | |
<body> | |
<div id='chart3f291645266b' class='rChart nvd3'></div> | |
<script type='text/javascript'> | |
$(document).ready(function(){ | |
drawchart3f291645266b() | |
}); | |
function drawchart3f291645266b(){ | |
var opts = { | |
"dom": "chart3f291645266b", | |
"width": 800, | |
"height": 400, | |
"x": "Hair", | |
"y": "Freq", | |
"group": "Eye", | |
"type": "multiBarChart", | |
"id": "chart3f291645266b" | |
}, | |
data = [ | |
{ | |
"Hair": "Black", | |
"Eye": "Brown", | |
"Sex": "Male", | |
"Freq": 32 | |
}, | |
{ | |
"Hair": "Brown", | |
"Eye": "Brown", | |
"Sex": "Male", | |
"Freq": 53 | |
}, | |
{ | |
"Hair": "Red", | |
"Eye": "Brown", | |
"Sex": "Male", | |
"Freq": 10 | |
}, | |
{ | |
"Hair": "Blond", | |
"Eye": "Brown", | |
"Sex": "Male", | |
"Freq": 3 | |
}, | |
{ | |
"Hair": "Black", | |
"Eye": "Blue", | |
"Sex": "Male", | |
"Freq": 11 | |
}, | |
{ | |
"Hair": "Brown", | |
"Eye": "Blue", | |
"Sex": "Male", | |
"Freq": 50 | |
}, | |
{ | |
"Hair": "Red", | |
"Eye": "Blue", | |
"Sex": "Male", | |
"Freq": 10 | |
}, | |
{ | |
"Hair": "Blond", | |
"Eye": "Blue", | |
"Sex": "Male", | |
"Freq": 30 | |
}, | |
{ | |
"Hair": "Black", | |
"Eye": "Hazel", | |
"Sex": "Male", | |
"Freq": 10 | |
}, | |
{ | |
"Hair": "Brown", | |
"Eye": "Hazel", | |
"Sex": "Male", | |
"Freq": 25 | |
}, | |
{ | |
"Hair": "Red", | |
"Eye": "Hazel", | |
"Sex": "Male", | |
"Freq": 7 | |
}, | |
{ | |
"Hair": "Blond", | |
"Eye": "Hazel", | |
"Sex": "Male", | |
"Freq": 5 | |
}, | |
{ | |
"Hair": "Black", | |
"Eye": "Green", | |
"Sex": "Male", | |
"Freq": 3 | |
}, | |
{ | |
"Hair": "Brown", | |
"Eye": "Green", | |
"Sex": "Male", | |
"Freq": 15 | |
}, | |
{ | |
"Hair": "Red", | |
"Eye": "Green", | |
"Sex": "Male", | |
"Freq": 7 | |
}, | |
{ | |
"Hair": "Blond", | |
"Eye": "Green", | |
"Sex": "Male", | |
"Freq": 8 | |
} | |
] | |
var data = d3.nest() | |
.key(function(d){ | |
return opts.group === undefined ? 'main' : d[opts.group] | |
}) | |
.entries(data) | |
nv.addGraph(function() { | |
var chart = nv.models[opts.type]() | |
.x(function(d) { return d[opts.x] }) | |
.y(function(d) { return d[opts.y] }) | |
.width(opts.width) | |
.height(opts.height) | |
d3.select("#" + opts.id) | |
.append('svg') | |
.datum(data) | |
.transition().duration(500) | |
.call(chart); | |
nv.utils.windowResize(chart.update); | |
return chart; | |
}); | |
}; | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment