无法在D3.js强制导向图中删除节点的子元素

时间:2013-05-16 14:19:52

标签: javascript d3.js

我正在使用D3.js Force-Directed Graph,就像这个演示here一样。我修改了这个代码,例如,用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();
}

我用我的代码here创建了一个小提琴。

1 个答案:

答案 0 :(得分:1)

需要删除节点而不是其中的div,只需在force.start()

之前添加两行
vis.selectAll("path").remove();
vis.selectAll(".node").remove();

fiddle

的更新版本