Hey,
your demo page isn't working in Firefox.
As far as I can evaluate the problem, you should rather use
.attr("width", function (d) {return d.value * 10})
.attr("height", function (d) {return d.value * 5})
for setting width & height instead of
.style("width", function (d) {return d.value * 10})
.style("height", function (d) {return d.value * 5})
Hey,
your demo page isn't working in Firefox.
As far as I can evaluate the problem, you should rather use
.attr("width", function (d) {return d.value * 10}).attr("height", function (d) {return d.value * 5})for setting width & height instead of
.style("width", function (d) {return d.value * 10}).style("height", function (d) {return d.value * 5})