Skip to content

Instantly share code, notes, and snippets.

@NPashaP
Last active December 15, 2016 20:23
Show Gist options
  • Save NPashaP/8ba964986c56fb669af107ead9cb3a81 to your computer and use it in GitHub Desktop.
Save NPashaP/8ba964986c56fb669af107ead9cb3a81 to your computer and use it in GitHub Desktop.
bar - Showing primary value labels at start
license: gpl-3.0
<!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);
d3.select("#default").call(bardef);
//custom
var barcust = viz.bar().data(data)
.valueSecondary(function(d){ return '';});
d3.select("#custom").call(barcust);
d3.select("#custom").selectAll(".primaryvalue")
.attr("y",function(d){ return d.hf ? 6 : d.height -6 ;})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment