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.

119 lines
4.1 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.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. });
  49. network.on("doubleClick", function (params) {
  50. params.event = "[original event]";
  51. document.getElementById('eventSpan').innerHTML = '<h2>doubleClick event:</h2>' + JSON.stringify(params, null, 4);
  52. });
  53. network.on("oncontext", function (params) {
  54. params.event = "[original event]";
  55. document.getElementById('eventSpan').innerHTML = '<h2>oncontext (right click) event:</h2>' + JSON.stringify(params, null, 4);
  56. });
  57. network.on("dragStart", function (params) {
  58. params.event = "[original event]";
  59. document.getElementById('eventSpan').innerHTML = '<h2>dragStart event:</h2>' + JSON.stringify(params, null, 4);
  60. });
  61. network.on("dragging", function (params) {
  62. params.event = "[original event]";
  63. document.getElementById('eventSpan').innerHTML = '<h2>dragging event:</h2>' + JSON.stringify(params, null, 4);
  64. });
  65. network.on("dragEnd", function (params) {
  66. params.event = "[original event]";
  67. document.getElementById('eventSpan').innerHTML = '<h2>dragEnd event:</h2>' + JSON.stringify(params, null, 4);
  68. });
  69. network.on("zoom", function (params) {
  70. document.getElementById('eventSpan').innerHTML = '<h2>zoom event:</h2>' + JSON.stringify(params, null, 4);
  71. });
  72. network.on("showPopup", function (params) {
  73. document.getElementById('eventSpan').innerHTML = '<h2>showPopup event: </h2>' + JSON.stringify(params, null, 4);
  74. });
  75. network.on("hidePopup", function () {
  76. console.log('hidePopup Event');
  77. });
  78. network.on("select", function (params) {
  79. console.log('select Event:', params);
  80. });
  81. network.on("selectNode", function (params) {
  82. console.log('selectNode Event:', params);
  83. });
  84. network.on("selectEdge", function (params) {
  85. console.log('selectEdge Event:', params);
  86. });
  87. network.on("deselectNode", function (params) {
  88. console.log('deselectNode Event:', params);
  89. });
  90. network.on("deselectEdge", function (params) {
  91. console.log('deselectEdge Event:', params);
  92. });
  93. network.on("hoverNode", function (params) {
  94. console.log('hoverNode Event:', params);
  95. });
  96. network.on("hoverEdge", function (params) {
  97. console.log('hoverEdge Event:', params);
  98. });
  99. network.on("blurNode", function (params) {
  100. console.log('blurNode Event:', params);
  101. });
  102. network.on("blurEdge", function (params) {
  103. console.log('blurEdge Event:', params);
  104. });
  105. </script>
  106. <script src="../../googleAnalytics.js"></script>
  107. </body>
  108. </html>