强制模拟为新节点生成NaN坐标

时间:2018-01-17 13:09:18

标签: javascript d3.js visualization

我是D3.js框架的新手并寻求帮助。我试图使用简单的力模拟绘制网络。我希望每秒都添加一个新节点并加入模拟。

以下是我的尝试。我用两个节点启动了sim,表现得很好。但是,当我添加第三个节点时,它会通过模拟为其x和y坐标分配NaN值。

HTML:

tagged-commit

使用Javascript:

<head>
<script src="https://d3js.org/d3.v4.js"></script>
</head>
<body>
  <svg width="300" height="300"></svg>
</body>

1 个答案:

答案 0 :(得分:3)

你必须将数组传递给模拟......

simulation.nodes(nodes);

...在redraw函数内。

以下是仅包含此更改的代码:

const svg = d3.select('svg');
const height = +svg.attr('height');
const width = +svg.attr('width');

// Test Data
const nodes = [{}, {}];

setTimeout(() => {
  nodes.push({});
  redraw();
}, 2000);

const ticked = () => {
  svg.selectAll('g.node')
    .attr('transform', d => {
      if (isNaN(d.x) || isNaN(d.y)) {
        console.error('nan!!!');
        d.x = 50;
        d.y = 50;
      }

      return `translate(${d.x},${d.y})`;
    });
};

const simulation = d3.forceSimulation()
  .force('repulsion', d3.forceManyBody().strength(-30))
  .force('pin_y_to_center', d3.forceY().y(d => height / 2).strength(0.1))
  .force('pin_x_to_center', d3.forceX().x(d => width / 2).strength(0.1));

simulation.on('tick', ticked);

const redraw = () => {
  simulation.nodes(nodes);
  const node = svg
    .selectAll('.node')
    .data(nodes)
    .enter().append('g');

  node.attr('class', 'node')
    .append('circle')
    .attr('r', 5);
};

redraw();
<script src="https://d3js.org/d3.v4.js"></script>
<svg width="300" height="300"></svg>

另外,请考虑在追加新节点后重新加热模拟。