link.links()

link.links([links])

If links is specified, sets the array of links associated with this force, recomputes the distance and strength parameters for each link, and returns this force. If links is not specified, returns the current array of links, which defaults to the empty array.

Each link is an object with the following properties:

  • source - the link’s source node; see simulation.nodes
  • target - the link’s target node; see simulation.nodes
  • index - the zero-based index into links, assigned by this method

For convenience, a link’s source and target properties may be initialized using numeric or string identifiers rather than object references; see link.id.

If the specified array of links is modified, such as when links are added to or removed from the simulation, this method must be called again with the new (or changed) array to notify the force of the change; the force does not make a defensive copy of the specified array.

doc_D3_Js
2016-11-24 10:27:58
Comments
Leave a Comment

Please login to continue.