Count sigma.js. I don't need zoom in it, but hover is needed

Tune it

settings: { autoRescale: false, mouseEnabled: false, touchEnabled: false, ... } 

Now I want the label appear when pointing to the node , as in a regular graph.

 nodes: [ { ... label: 'Node', ... } ], 

Tried to add enableHovering: true, to the settings enableHovering: true, - failed

    1 answer 1

    In settings you need to replace mouseEnabled: false, with mouseWheelEnabled: false, Then the zoom will not, and hover will work.