1

我的问题非常类似于JS D3 textPath is not display

一个区别是我想附加返回到链接的 json 而不仅仅是节点(嗯,对于每个有链接到它的父节点的节点,我希望该链接具有相同的 json)......理想情况下,我实际上想从根节点向左添加一条线,也无处可去。

然后,我基本上希望在我的链接中间有文本,并且跟随链接行会很好,但不是绝对必要的。

我当前的非工作代码是(我不确定,但我是否需要为每个链接添加一个 id 元素?但为此我需要 json !!!!加上我需要 json 来检索文本对于每个链接也是如此),然后我想如果我没记错的话,我会使用 textPath 中的 id 来引用路径,对吧?

var width = $("#graph").width(),
    height = 200;

var cluster = d3.layout.cluster()
    .size([height, width - 160]);

var diagonal = d3.svg.diagonal()
    .projection(function(d) { return [d.y, d.x]; });
var myDiv = document.getElementById('graph');

var svg = d3.select(myDiv).append("svg")
    .attr("width", width)
    .attr("height", height)
  .append("g")
    .attr("transform", "translate(40,0)");

d3.json("/datastreams/json/${_encoded}", function(error, root) {
  var nodes = cluster.nodes(root),
      links = cluster.links(nodes);

  var link = svg.selectAll(".link")
      .data(links)
    .enter().append("path")
      .attr("class", "link")
      .attr("d", diagonal);

  var node = svg.selectAll(".node")
      .data(nodes)
    .enter().append("g")
      .attr("class", "node")
      .attr("transform", function(d) { return "translate(" + d.y + "," + d.x + ")"; })

  link.append("text")
     .style("font-size", function(d) { return d.selected ? "16px" : "10px"; })
     .style("font-weight", function(d) { return d.selected ? "bold" : ""; })
     .text(function(d) { return "SSSS="+d.name; });

  node.append("circle")
      .attr("r", function(d) { return d.selected ? 10 : 4.5; });

  var refs = node.append("a")
    .attr("xlink:href", function(d) { return d.root ? "start" : "end"; });

  var text = refs.append("text")
  .attr("dx", function(d) { return d.root ? 8 : -8; })
  .attr("dy", -4)
  .style("text-anchor", function(d) { return d.root ? "start" : "end"; });

  text.append("tspan")
     .style("font-size", function(d) { return d.selected ? "16px" : "10px"; })
     .style("font-weight", function(d) { return d.selected ? "bold" : ""; })
     .style("fill", function(d) { return "blue"; })
     .text(function(d) { return d.name; });

});

d3.select(self.frameElement).style("height", height + "px");

</script>
4

1 回答 1

1

ah, there we go as this seems to be working(well, I am not fully done but have it very close to what I want).

  var textPath = path.each(function(l){
    var aref = theG.append("a")
        .attr("xlink:href", function(d) { return "http://databus.nrel.gov" });
    var text = aref.append("text")
          .style("fill", function(d) { return "blue"; });
    var textPath = text.append("textPath")
            .attr("startOffset", "50%")
            .attr("xlink:href", "#path"+l.target.name)
            .text("insert");

    var aref2 = theG.append("a")
    .attr("xlink:href", function(d) { return "http://databus.nrel.gov" });
  var text2 = aref2.append("text")
    .style("fill", function(d) { return "blue"; });
  var textPath2 = text2.append("textPath")
    .attr("startOffset", "60%")
    .attr("xlink:href", "#path"+l.target.name)
    .text("delete");
  });
于 2013-10-07T19:40:35.267 回答