I'm having trouble building a graph network with cytoscapeJS. I can add nodes and handle them which is quite easy, but I'm not able to configure cytospace to disable Dragging/Moving nodes.
I have found a JSbin from somebody where you can try: http://jsbin.com/vasenatimu/2/edit?html,js,output
Have a look at http://js.cytoscape.org under 'Initialisation options', I tried all the options, but they dont solve my problem (I set nearly all options to false and I can still grab and select nodes).
Can you help me with this?
initOptions.autoungrabify: true
or cy.nodes().ungrabify()
You can also disable selected nodes using their configuration. For example:
cytoscape({
elements: {
nodes: [
{
data: { id: "node1" },
grabbable: false,
},
],
},
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With