Last active
December 15, 2016 20:24
-
-
Save NPashaP/097a5dc2139a48189df1e558ee39fa0b to your computer and use it in GitHub Desktop.
bar - sortSecondary
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
license: gpl-3.0 |
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
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
rect{ | |
fill:#42A5F5; | |
stroke:black; | |
} | |
</style> | |
<body> | |
<svg width="960" height="500"> | |
<g id="default" transform="translate(40, 50)"></g> | |
<g id="custom" transform="translate(520, 50)"></g> | |
</svg> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<script src="http://vizjs.org/viz.v1.1.7.min.js"></script> | |
<script> | |
var data=[['A', 3, 'x'],['A', 5, 'y'],['B', 2, 'x'],['C', -2, 'x'],['C', -4, 'y'],['D', 3, 'y']]; | |
//default | |
var bardef = viz.bar().data(data) | |
.keySecondary(function(d){ return d[2]}); | |
d3.select("#default").call(bardef); | |
//custom | |
var barcust = viz.bar().data(data) | |
.keySecondary(function(d){ return d[2]}) | |
.sortSecondary(d3.descending); | |
d3.select("#custom").call(barcust); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment