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.

60 lines
1.3 KiB

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Network | Setting the random seed</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. p {
  14. max-width:600px;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <p>
  20. Create a simple network with some nodes and edges but with a fixed seed. This means the layout will be the same every time the nodes
  21. are settled.
  22. </p>
  23. <div id="mynetwork"></div>
  24. <script type="text/javascript">
  25. // create an array with nodes
  26. var nodes = new vis.DataSet([
  27. {id: 1, label: 'Node 1'},
  28. {id: 2, label: 'Node 2'},
  29. {id: 3, label: 'Node 3'},
  30. {id: 4, label: 'Node 4'},
  31. {id: 5, label: 'Node 5'}
  32. ]);
  33. // create an array with edges
  34. var edges = new vis.DataSet([
  35. {from: 1, to: 3},
  36. {from: 1, to: 2},
  37. {from: 2, to: 4},
  38. {from: 2, to: 5}
  39. ]);
  40. // create a network
  41. var container = document.getElementById('mynetwork');
  42. var data = {
  43. nodes: nodes,
  44. edges: edges
  45. };
  46. var options = {layout:{randomSeed:2}};
  47. var network = new vis.Network(container, data, options);
  48. </script>
  49. <script src="../../googleAnalytics.js"></script>
  50. </body>
  51. </html>