I'm using Sigma.Js library to display graph visualization in my Node.Js app.
There's an overNode
event, which displays the label of the node in a white rectangle when you hover over it.
I want to display this label rectangle when the node is clicked, does anybody know how to do it?
Here is the solution:
sigma.misc.bindEvents.js
inside this path :sigma.js-master\sigma.js-master\src\misc
494
"click"
&"move"
to be as follows:sigma.js-master\sigma.js-master\examples\basic.html
in your browser.Here is an Example