我正在尝试通过Mike Bostock改编这个和弦图:
我希望文本标签像这个和弦图一样向外旋转:
http://bost.ocks.org/mike/uberdata/
这里有一个例子
http://bl.ocks.org/mbostock/910126
但是,转换是使用svg:text:
完成的 g.append("svg:text")
.each(function(d) { d.angle = (d.startAngle + d.endAngle) / 2; })
.attr("dy", ".35em")
.attr("text-anchor", function(d) { return d.angle > Math.PI ? "end" : null; })
.attr("transform", function(d) {
return "rotate(" + (d.angle * 180 / Math.PI - 90) + ")"
+ "translate(" + (r0 + 26) + ")"
+ (d.angle > Math.PI ? "rotate(180)" : "");
})
.text(function(d) { return nameByIndex[d.index]; });
我想要改编的那个使用“text”和“textPath”,我似乎无法简单地添加转换/旋转属性。添加此行
.attr("transform",function(d,i){return "rotate(90)";})
以下代码不执行任何操作:
// Add a text label.
var groupText = group.append("text")
.attr("x", 6)
.attr("dy", 15);
groupText.append("textPath")
.attr("xlink:href", function(d, i) { return "#group" + i; })
.text(function(d, i) { return cities[i].country; });
任何想法如何向外旋转文本,以便可以显示较小的和弦组文本标签,而不会被揉成一团或完全关闭(原始解决方案)?
答案 0 :(得分:5)
我认为您正在寻找this example by Mike Bostock
至于修改初始和弦代码,以下更改应该按照您的要求进行:
// Add a text label.
// var groupText = group.append("text")
// .attr("x", 6)
// .attr("dy", 15);
//groupText.append("textPath")
// .attr("xlink:href", function(d, i) { return "#group" + i; })
// .text(function(d, i) { return cities[i].name; });
// Remove the labels that don't fit. :(
//groupText.filter(function(d, i) { return groupPath[0][i].getTotalLength() / 2 - 16 < this.getComputedTextLength(); })
// .remove();
group.append("text")
.each(function(d) { d.angle = (d.startAngle + d.endAngle) / 2; })
.attr("dy", ".35em")
.attr("transform", function(d) {
return "rotate(" + (d.angle * 180 / Math.PI - 90) + ")"
+ "translate(" + (innerRadius + 26) + ")"
+ (d.angle > Math.PI ? "rotate(180)" : "");
})
.style("text-anchor", function(d) { return d.angle > Math.PI ? "end" : null; })
.text(function(d, i) { return cities[i].name; });