D3树正方形节点不在所需位置 [英] D3 tree square node not in desired position

查看:222
本文介绍了D3树正方形节点不在所需位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用d3像这样创建树状视图 http://bl.ocks.org/ mbostock / 4339083
,而不是节点中的圆圈,我想要有正方形。我发现这篇文章给我一个线索 d3.js:modifyng链接一个树布局但没有解决我的问题。这是我的小提琴 http://jsfiddle.net/yp7o8wbm/

I want to create a tree view using d3 like this one http://bl.ocks.org/mbostock/4339083, but instead of circles in node, I would like to have squares. I found this post that gave me a clue d3.js: modifyng links in a tree layout but not solved my issue. This is my fiddle http://jsfiddle.net/yp7o8wbm/ .

正如你所看到的,所有的节点都不在正确的位置。

As you can see, all node are not in the correct position.

这是js代码:

var margin = {top: 20, right: 120, bottom: 20, left: 120},
 width = 960 - margin.right - margin.left,
 height = 500 - margin.top - margin.bottom;


var rectSize = 40;

var i = 0;

var tree = d3.layout.tree().size([height, width]);

var diagonal = d3.svg.diagonal()
                                .source(function(d) { return {"x":d.source.x, "y":(d.source.y+rectSize)}; })            
                                   .target(function(d) { return {"x":(d.target.x), "y":d.target.y}; })
                                .projection(function(d) { return [d.y, d.x]; });

var svg = d3.select("body").append("svg")
 .attr("width", width + margin.right + margin.left)
 .attr("height", height + margin.top + margin.bottom)
 .append("g")
 .attr("transform", "translate(" + margin.left + "," + margin.top + ")");

root = treeData[0];

update(root);

function update(source) {

          // Compute the new tree layout.
          var nodes = tree.nodes(root).reverse(),
           links = tree.links(nodes);

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

          // Declare the nodes…
          var node = svg.selectAll("g.node")
           .data(nodes, function(d) { return d.id || (d.id = ++i); });

          // Enter the nodes.
          var nodeEnter = node.enter().append("g")
           .attr("class", "node")
           .attr("transform", function(d) { 
            return "translate(" + d.y + "," + d.x + ")"; });




        nodeEnter.append("rect")

          .attr("x", function(d) { return d.x ; })
          .attr("y", function(d) { return d.y ; })
          .attr("width", rectSize)
          .attr("height", rectSize);


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

          // Declare the links…
          var link = svg.selectAll("path.link")
           .data(links, function(d) { return d.target.id; });

          // Enter the links.
          link.enter().insert("path", "g")
           .attr("class", "link")
           .attr("d", diagonal);

}  

我不知道我的代码中的错误在哪里?

I can not realize where is the error in my code?

推荐答案

您以不同的方式设置位置两次:

You are setting the position twice in different ways:

var nodeEnter = node.enter().append("g")
  .attr("class", "node")
  .attr("transform", function(d) { 
     return "translate(" + d.y + "," + d.x + ")"; //<-- setting it on the parent using a "translate"
   });

nodeEnter.append("rect")
  .attr("x", function(d) { return d.x ; }) //<-- setting it on the rect using a "x" attribute

这样做:

nodeEnter.append("rect")
   .attr("x", 0) //<-- x is taken care of by translate
   .attr("y", -rectSize/2) //<-- just use y to center the rect
   .attr("width", rectSize)
   .attr("height", rectSize);

已更新小提琴

这篇关于D3树正方形节点不在所需位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆