e7b2eb4
1
2
3
4
5
6
d3.round = function(x, n) { return n ? Math.round(x * (n = Math.pow(10, n))) / n : Math.round(x); };