我创建了一个 D3 饼图并将文本标签旋转为径向向外流动。这在 IE 上看起来不错,但不幸的是在 Chrome 中,文本看起来很糟糕。CSS webkit 字体平滑技巧似乎不起作用。我猜这需要在 SVG/D3 领域完成......?Chrome 只是不想合作。
完整的代码在这个小提琴:http: //jsfiddle.net/mn5bT/2/
我以这种方式附加文本标签:
g.append("text")
.attr("transform", function(d) {
var c = arc.centroid(d),
x = c[0],
y = c[1],
h = Math.sqrt(x*x + y*y); // pythagorean theorem
flipAngle = d.endAngle > Math.PI;
angleOffset = flipAngle? 90:-90;
return "translate(" + (x/h * radius) + ',' + (y/h * radius) + ")" +
"rotate(" + (angleOffset + 180*(d.endAngle + d.startAngle)/2/Math.PI) + ")";
})
.attr("dy", ".35em")
.attr("text-anchor", function(d) {
// are we past the center?
return (d.endAngle + d.startAngle)/2 > Math.PI ? "end" : "start";
})
.text(function(d) { return d.data.value.campus; });