In the following D3 sunburst :
http://jsfiddle.net/maxl/eabFC/
.attr("transform", function(d) {
return "rotate(" + (d.x + d.dx / 2 - Math.PI / 2) / Math.PI * 180 + ")";
});
The labels in the left quadrants are upside down, I would like to perform a rotation on them so that the text reads from left to right.
The transformation should only apply to the arcs from approximately 100 degree to 270 degree.