5

我正在尝试改编 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]; });

我试图适应的那个使用“文本”和“文本路径”,我似乎无法简单地添加一个变换/旋转属性。添加这一行

.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; });

有什么想法可以向外旋转文本,以便可以显示更小的和弦组文本标签而不会被捆绑或(就像原始解决方案一样)完全关闭?

4

1 回答 1

5

我想你正在寻找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; });
于 2015-02-12T14:57:02.810 回答