1

我在 这里使用 D3.js Force-Directed Graph 像这个演示。例如,我修改了此代码,用 SVG 图像和标签更改圆圈并与 SVG 路径链接。单击节点它是展开和折叠子节点,意味着在节点的鼠标单击时添加和删除子节点。

添加新节点后,所有现有节点也重新创建图像和标签,旧节点仍然存在,但我只想更新新节点而不影响现有节点。

与删除节点相同的问题应该用新节点替换旧节点,不将新元素附加到节点不影响其他现有节点,只更改添加或删除的节点。

function update() {
    var nodes = flatten(root),
        links = d3.layout.tree().links(nodes);

    // Restart the force layout.
    force.nodes(nodes)
        .links(links)
        .linkDistance(120)
        .charge(-500)
        .start();

    path = vis.selectAll("path.link");
    path = path.data(force.links());
    path.enter().append("svg:path")
        .attr("class", "link")
        .attr("marker-end", "url(#end)");

    path.exit().remove();
    node = vis.selectAll(".node");
    node = node.data(force.nodes());
    node.enter().append("g")
        .attr("class", "node")
        .on("click", click)
        .call(force.drag);

    node.append("image")
        .attr("xlink:href", function (d) {
        return "http://t2.gstatic.com/images?q=tbn:ANd9GcT6fN48PEP2-z-JbutdhqfypsYdciYTAZEziHpBJZLAfM6rxqYX";
    })
        .attr("class", "image")
        .attr("x", -15)
        .attr("y", -15)
        .attr("width", 24)
        .attr("height", 24);

    node.append("text")
        .attr("class", "text")
        .attr("x", 40)
        .attr("dy", ".35em")
        .style("fill", color)
        .text(function (d) {
        return d.name;
    });

    node.exit().remove();
}

我在这里用我的代码创建了一个小提琴。

4

1 回答 1

2

需要删除节点而不是其中的 div,只需在 force.start() 之前添加两行

vis.selectAll("path").remove();
vis.selectAll(".node").remove();

小提琴的更新版本

于 2013-05-28T08:32:10.813 回答