I currently have an object which are translate positions & I them in my transform function here:
.attr("transform", function(d,i)
{return "translate ("+ arc[i].centroid() +")" + inner[d.Country];})
;
.text(function(d) {return d.Country;})
I would like to know whether it is possible to define in the text function to only collect the country data once & not multiple times?
Heres a jsfiddle to make my point more clear:http://jsfiddle.net/xwZjN/41/
Any pointers in the right direction would be appreciated