6

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?

ant45de
  • 832
  • 1
  • 7
  • 26

3 Answers3

12

initOptions.autoungrabify: true or cy.nodes().ungrabify()

maxkfranz
  • 11,896
  • 1
  • 27
  • 36
1

You can also disable selected nodes using their configuration. For example:

cytoscape({
  elements: {
    nodes: [
      { 
        data: { id: "node1" }, 
        grabbable: false,
      },
    ],
  },
});
emil.c
  • 1,987
  • 2
  • 26
  • 46
0

I faced the same problem and I found out this is the solution to the problem for me:

cytoscape({
  autolock: true, <== this did the trick for me
  elements: {
    nodes: [
      { 

      },
    ],
  },
});

I hope this will help you as well.

Regards Edgar

eheydenr
  • 1,000
  • 11
  • 10