2

我将此示例用于 D3.js 树布局。

http://mbostock.github.com/d3/talk/20111018/tree.html

我需要翻转它,所以根节点在右侧,链接......等等。

我怎样才能做到这一点?

4

1 回答 1

8
  • 将每个节点的偏移量更改为从右侧而不是从左侧偏移:

    // Normalize for fixed-depth.
    nodes.forEach(function(d) { d.y = d.depth * 180; });
    

变成:

    // Normalize for fixed-depth from right.
    nodes.forEach(function(d) { d.y = w - (d.depth * 180); });
  • 将标签更改为在对面

    nodeEnter.append("svg:text")
      .attr("x", function(d) { return d.children || d._children ? -10 : 10; })
      .attr("dy", ".35em")
      .attr("text-anchor", function(d) { return d.children || d._children ? "end" : "start"; })    
      .text(function(d) { return d.name; })
      .style("fill-opacity", 1e-6);
    

变成:

    nodeEnter.append("svg:text")
      .attr("x", function(d) { return d.children || d._children ? 10 : -10; })
      .attr("dy", ".35em")
      .attr("text-anchor", function(d) { return d.children || d._children ? "start" : "end"; })    
      .text(function(d) { return d.name; })
      .style("fill-opacity", 1e-6);
  • 将根节点的原始位置放在右侧,而不是左侧,所以第一次转换并不奇怪:

    root = json;
    root.x0 = h / 2;
    root.y0 = 0;
    

变成:

    root = json;
    root.x0 = h / 2;
    root.y0 = w;

小提琴:http: //jsfiddle.net/Ak5tP/1/embedded/result/

于 2013-03-28T01:24:15.207 回答