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.

73 lines
2.0 KiB

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Network | Basic usage</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'},
  25. {id: 2, label: 'Node 2'},
  26. {id: 3, label: 'Node 3'},
  27. {id: 4, label: 'Node 4'},
  28. {id: 5, label: 'Node 5'}
  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("startStabilizing", function (params) {
  46. document.getElementById('eventSpan').innerHTML = '<h3>Starting Stabilization</h3>';
  47. console.log("started")
  48. });
  49. network.on("stabilizationProgress", function (params) {
  50. document.getElementById('eventSpan').innerHTML = '<h3>Stabilization progress</h3>' + JSON.stringify(params, null, 4);
  51. console.log("progress:",params);
  52. });
  53. network.on("stabilizationIterationsDone", function (params) {
  54. document.getElementById('eventSpan').innerHTML = '<h3>Stabilization iterations complete</h3>';
  55. console.log("finished stabilization interations");
  56. });
  57. network.on("stabilized", function (params) {
  58. document.getElementById('eventSpan').innerHTML = '<h3>Stabilized!</h3>' + JSON.stringify(params, null, 4);
  59. console.log("stabilized!", params);
  60. });
  61. </script>
  62. <script src="../../googleAnalytics.js"></script>
  63. </body>
  64. </html>