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.

75 lines
2.4 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.
  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 = {};
  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("zoom", function (params) {
  58. document.getElementById('eventSpan').innerHTML = '<h2>zoom event:</h2>' + JSON.stringify(params, null, 4);
  59. });
  60. network.on("showPopup", function (params) {
  61. document.getElementById('eventSpan').innerHTML = '<h2>showPopup event: </h2>' + JSON.stringify(params, null, 4);
  62. });
  63. </script>
  64. <script src="../../googleAnalytics.js"></script>
  65. </body>
  66. </html>