你需要重新设计一些东西才能得到你想要的效果。文本标签相对于整个图形旋转。相反,使用arc.centroid将它们放置在每个弧的中心,然后“局部”旋转它们。
首先,这是您想要的角度(弧的角度):
function computeTextRotation(d) {
return (x(d.x + d.dx / 2)) / Math.PI * 180;
}
其次,这是放置和轮换调用:
var text = g.append("g")
.attr("transform", function(d){
return "translate(" + arc.centroid(d) + ")";
})
.append("text")
.attr("transform", function(d) {
return d.parent ? "rotate(" + computeTextRotation(d) + ")" : "";
})
.style("text-anchor", "middle")
.attr("dy", ".35em") // vertical-align
.style("fill", function(d) {
return d.textcolor ? d.textcolor : "#000";
})
.text(function(d) {
if (d.parent) {
return d.name;
} else {
aux = d.description;
return "";
}
});
这里的工作示例