diff --git a/docs/graph2d.html b/docs/graph2d.html index 9f895282..68aad11c 100644 --- a/docs/graph2d.html +++ b/docs/graph2d.html @@ -813,6 +813,29 @@ Graph2d.clear({options: true}); // clear options only + + click + Fired when clicked inside the Graph2d. + + + Passes a properties object as returned by the method Graph2d.getEventProperties(event). + + + + + contextmenu + Fired when right-clicked inside the Graph2d. Note that in order to prevent the context menu from showing up, default behavior of the event must be stopped: +
graph2d.on('contextmenu', function (props) {
+  alert('Right click!');
+  props.event.preventDefault();
+});
+
+ + + Passes a properties object as returned by the method Graph2d.getEventProperties(event). + + + destroy() none @@ -820,6 +843,15 @@ Graph2d.clear({options: true}); // clear options only + + doubleClick + Fired when double clicked inside the Graph2d. + + + Passes a properties object as returned by the method Graph2d.getEventProperties(event). + + + getCurrentTime() Date