vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

121 lines
4.2 KiB

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Network | Interaction events</title>
  5. <script type="text/javascript" src="../../../dist/vis.js"></script>
  6. <link href="../../../dist/vis-network.min.css" rel="stylesheet" type="text/css"/>
  7. <style type="text/css">
  8. #mynetwork {
  9. width: 600px;
  10. height: 400px;
  11. border: 1px solid lightgray;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <p>
  17. Create a simple network with some nodes and edges. Some of the events are logged in the console in improve readability.
  18. </p>
  19. <div id="mynetwork"></div>
  20. <pre id="eventSpan"></pre>
  21. <script type="text/javascript">
  22. // create an array with nodes
  23. var nodes = new vis.DataSet([
  24. {id: 1, label: 'Node 1', title: 'I have a popup!'},
  25. {id: 2, label: 'Node 2', title: 'I have a popup!'},
  26. {id: 3, label: 'Node 3', title: 'I have a popup!'},
  27. {id: 4, label: 'Node 4', title: 'I have a popup!'},
  28. {id: 5, label: 'Node 5', title: 'I have a popup!'}
  29. ]);
  30. // create an array with edges
  31. var edges = new vis.DataSet([
  32. {from: 1, to: 3},
  33. {from: 1, to: 2},
  34. {from: 2, to: 4},
  35. {from: 2, to: 5}
  36. ]);
  37. // create a network
  38. var container = document.getElementById('mynetwork');
  39. var data = {
  40. nodes: nodes,
  41. edges: edges
  42. };
  43. var options = {interaction:{hover:true}};
  44. var network = new vis.Network(container, data, options);
  45. network.on("click", function (params) {
  46. params.event = "[original event]";
  47. document.getElementById('eventSpan').innerHTML = '<h2>Click event:</h2>' + JSON.stringify(params, null, 4);
  48. console.log('click event, getNodeAt returns: ' + this.getNodeAt(params.pointer.DOM));
  49. });
  50. network.on("doubleClick", function (params) {
  51. params.event = "[original event]";
  52. document.getElementById('eventSpan').innerHTML = '<h2>doubleClick event:</h2>' + JSON.stringify(params, null, 4);
  53. });
  54. network.on("oncontext", function (params) {
  55. params.event = "[original event]";
  56. document.getElementById('eventSpan').innerHTML = '<h2>oncontext (right click) event:</h2>' + JSON.stringify(params, null, 4);
  57. });
  58. network.on("dragStart", function (params) {
  59. params.event = "[original event]";
  60. document.getElementById('eventSpan').innerHTML = '<h2>dragStart event:</h2>' + JSON.stringify(params, null, 4);
  61. });
  62. network.on("dragging", function (params) {
  63. params.event = "[original event]";
  64. document.getElementById('eventSpan').innerHTML = '<h2>dragging event:</h2>' + JSON.stringify(params, null, 4);
  65. });
  66. network.on("dragEnd", function (params) {
  67. params.event = "[original event]";
  68. document.getElementById('eventSpan').innerHTML = '<h2>dragEnd event:</h2>' + JSON.stringify(params, null, 4);
  69. });
  70. network.on("zoom", function (params) {
  71. document.getElementById('eventSpan').innerHTML = '<h2>zoom event:</h2>' + JSON.stringify(params, null, 4);
  72. });
  73. network.on("showPopup", function (params) {
  74. document.getElementById('eventSpan').innerHTML = '<h2>showPopup event: </h2>' + JSON.stringify(params, null, 4);
  75. });
  76. network.on("hidePopup", function () {
  77. console.log('hidePopup Event');
  78. });
  79. network.on("select", function (params) {
  80. console.log('select Event:', params);
  81. });
  82. network.on("selectNode", function (params) {
  83. console.log('selectNode Event:', params);
  84. });
  85. network.on("selectEdge", function (params) {
  86. console.log('selectEdge Event:', params);
  87. });
  88. network.on("deselectNode", function (params) {
  89. console.log('deselectNode Event:', params);
  90. });
  91. network.on("deselectEdge", function (params) {
  92. console.log('deselectEdge Event:', params);
  93. });
  94. network.on("hoverNode", function (params) {
  95. console.log('hoverNode Event:', params);
  96. });
  97. network.on("hoverEdge", function (params) {
  98. console.log('hoverEdge Event:', params);
  99. });
  100. network.on("blurNode", function (params) {
  101. console.log('blurNode Event:', params);
  102. });
  103. network.on("blurEdge", function (params) {
  104. console.log('blurEdge Event:', params);
  105. });
  106. </script>
  107. </body>
  108. </html>