cytoscape / ipycytoscape

A Cytoscape Jupyter widget
https://ipycytoscape.readthedocs.io/en/master/
BSD 3-Clause "New" or "Revised" License
269 stars 62 forks source link

all interactions with the graph #182

Open joseberlines opened 3 years ago

joseberlines commented 3 years ago

IN the docs is possible to see this code:

cyto.on('node', 'click', log_clicks)
cyto.on('node', 'mouseover', log_mouseovers)

Are those all the interactions possible. I.e. is it possible to code "right click', actions on the edges (mouse over and click) etc. a comprehensive list of events that can be influenced/code might be very useful

ianhi commented 3 years ago

Hey @joseberlines a list of all the events can be found in cytoscape js docs. See here: https://js.cytoscape.org/#events/user-input-device-events

This would be great to add to the documentation