Igor a610223309 Improve student view | hace 5 años | |
---|---|---|
.. | ||
README.md | hace 5 años | |
sigma.plugins.dragNodes.js | hace 5 años |
Plugin developed by José M. Camacho, events by Sébastien Heymann for Linkurious.
This plugin provides a method to drag & drop nodes. At the moment, this plugin is not compatible with the WebGL renderer. Check the sigma.plugins.dragNodes function doc or the example code to know more.
To use, include all .js files under this folder. Then initialize it as follows:
var dragListener = new sigma.plugins.dragNodes(sigInst, renderer);
Kill the plugin as follows:
sigma.plugins.killDragNodes(sigInst);
This plugin provides the following events fired by the instance of the plugin:
startdrag
: fired at the beginning of the dragdrag
: fired while the node is draggeddrop
: fired at the end of the drag if the node has been draggeddragend
: fired at the end of the dragExemple of event binding:
dragListener.bind('startdrag', function(event) {
console.log(event);
});