使用dagre-d3定位边缘

时间:2015-07-16 12:27:06

标签: javascript d3.js svg graph dagre-d3

我有一个图表,其边缘与这样的节点重叠

Graph

  1. 我可以让边缘从节点的正中间开始而不是顶部中心,如图像Graph2
  2. 是否有任何属性可以解决这个问题?

2 个答案:

答案 0 :(得分:0)

是的,你应该能够相对容易地做到这一点。您可能需要提供一些代码来完全演示,但基本上您想要为您的行添加x值。

.attr("x", function(d) { return d.x + nodeWidth / 2; });

因此,如果您要添加一些代码,那么您的代码可能如下所示:

var links = d3.selectAll(".link")
              .data(data)
              .enter()
              .attr("x1", function(d) { return d.x1 + nodeWidth / 2; })
              .attr("y1", function(d) { return d.y1; })
              .attr("x2", function(d) { return d.x2; })
              .attr("y2", function(d) { return d.y2; });

答案 1 :(得分:0)

这是一个老问题,但是为了以后参考,这是我的处理方式:

为节点提供自定义形状:

(请注意,下面的intersect函数是将所有边收集到同一端口的实际部分)

const POINT_RADIUS = 3;
function renderNode(parent, bbox, node) {
  parent.selectAll('rect, circle').remove();
  parent.insert('circle', ':first-child')
    .attr('cx', -bbox.width / 2)
    .attr('cy', 0)
    .attr('r', POINT_RADIUS)
    .attr('class', 'port in');

  parent.insert('circle', ':last-child')
    .attr('cx', bbox.width / 2)
    .attr('cy', 0)
    .attr('r', POINT_RADIUS)
    .attr('class', 'port out');

  parent.insert('rect', ':first-child')
    .attr('x', -bbox.width / 2)
    .attr('y', -bbox.height / 2)
    .attr('width', bbox.width)
    .attr('height', bbox.height);

  node.intersect = (point) => {
    const w = node.width / 2;
    return { x: node.x + (point.x < node.x ? -w : w), y: node.y };
  };
  return parent;
}

然后将此形状分配给节点形状:

const render = new dagreD3.render();
render.shapes().node = renderNode;