Giter VIP home page Giter VIP logo

Comments (5)

vasturiano avatar vasturiano commented on May 14, 2024 2

@bt2414 normally you want the force engine to reheat when changing data so that it adjusts spatially to the new topology. If you wish to bypass that, just set cooldownTicks={0} when updating the data to prevent the engine from reheating.

from react-force-graph.

vasturiano avatar vasturiano commented on May 14, 2024

@bt2414 you can simply update the value of the nodeColor accessor prop to follow the logic that you wish. For example:

<ForceGraph3D
  graphData={...}
  nodeColor={ node => node.id === 'node1' ? 'red' : 'blue' }
/>

Also if you want the highlighting node to change dynamically, you can just tie it to a state attr (f.e. state.nodeToHighlight):
nodeColor={ node => node.id === this.state.nodeToHighlight ? 'red' : 'blue' }

from react-force-graph.

 avatar commented on May 14, 2024

@vasturiano Thanks so much.
I am just wondering if we can have a way to directly change to the whole graph instance after initializing the ForceGraph3D?
For example, if I want to add one edge from node1 to node2, how can I achieve that?

from react-force-graph.

vasturiano avatar vasturiano commented on May 14, 2024

@qianlongwuyong2018 you can just change your graphData prop to reflect the changes you want, like dynamically adding/removing nodes/links. Here's an example:
https://vasturiano.github.io/react-force-graph/example/dynamic/

from react-force-graph.

bt2414 avatar bt2414 commented on May 14, 2024

@vasturiano Thanks for your reply. If I am using the dynamic graph method to do the update, I think the layout of the graph will be changed. Could you provide a way we can change the graph without changing the layout?

from react-force-graph.

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.