Coder Social home page Coder Social logo

Comments (4)

mbostock avatar mbostock commented on April 29, 2024 1

In update your code is setting node to just the entering nodes (node = node.enter().append("g")) and link to just the entering links (link = link.enter().append("line")), so subsequent redrawing of the graph only redraws the nodes and links that were entered in the last update.

You can fix this by merging enter and update after doing the data join. For example:

link = svg.selectAll(".link").data(links, function(d) { return d.target.id; })
var linkEnter = link.enter().append("line").attr("class", "link");
link = linkEnter.merge(link);

A fixed example:

http://bl.ocks.org/mbostock/a270e536f0f4e44c0bc765bf951893eb

I noticed another bug in your code which is that you initialize the new link’s source and target using the numeric id rather than references to the node objects. That’s fine, but the problem is you refer to d.target.id as the key in your data join before you’ve called link.links, and thus before the link has replaced your numeric id with a reference to the node object. It’s cleaner to initialize the link with the source and target references directly; link.id is really intended for when you want to serialize your graph to JSON (which doesn’t support object references).

function click(d) {
  var target = {id: index, name: "server " + index};
  nodes.push(target);
  links.push({source: d, target: target});
  index++;
  update();
}

from d3-force.

Kirupakaran avatar Kirupakaran commented on April 29, 2024

If you expand and collapse the root node, it seems as if the children of root form a separate force layout and the root nodes is not draggable.

from d3-force.

Kirupakaran avatar Kirupakaran commented on April 29, 2024

Another fiddle with simple force layout.

https://jsfiddle.net/n4m1r8nb/1/

Adding nodes dynamically on click. Same issue occurs.

from d3-force.

Kirupakaran avatar Kirupakaran commented on April 29, 2024

@mbostock , Thank you very much. :) And, Good luck for v4!

from d3-force.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.