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.

81 lines
2.7 KiB

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <title>Network | Sizing</title>
  5. <style type="text/css">
  6. html, body {
  7. font: 10pt arial;
  8. }
  9. #mynetwork {
  10. width: 600px;
  11. height: 600px;
  12. border: 1px solid lightgray;
  13. }
  14. </style>
  15. <script type="text/javascript" src="../../dist/vis.js"></script>
  16. <link href="../../dist/vis.css" rel="stylesheet" type="text/css" />
  17. <script type="text/javascript">
  18. var nodes = null;
  19. var edges = null;
  20. var network = null;
  21. var DIR = 'img/soft-scraps-icons/';
  22. function draw() {
  23. // create people.
  24. // value corresponds with the age of the person
  25. nodes = [
  26. {id: 1, value: 2, label:'Algie', title: 'Algie (2 years old)'},
  27. {id: 2, value: 31, label: 'Alston', title: 'Alston (31 years old)'},
  28. {id: 3, value: 12, label: 'Barney', title: 'Barney (12 years old)'},
  29. {id: 4, value: 16, label: 'Coley', title: 'Coley (16 years old)'},
  30. {id: 5, value: 17, label: 'Grant', title: 'Grant (17 years old)'},
  31. {id: 6, value: 15, label: 'Langdon', title: 'Langdon (15 years old)'},
  32. {id: 7, value: 6, label: 'Lee', title: 'Lee (6 years old)'},
  33. {id: 8, value: 5, label: 'Merlin', title: 'Merlin (5 years old)'},
  34. {id: 9, value: 30, label: 'Mick', title: 'Mick (30 years old)'},
  35. {id: 10, value: 18, label: 'Tod', title: 'Tod (18 years old)'}
  36. ];
  37. // create connections.
  38. // value corresponds with the amount of contact between two people
  39. edges = [
  40. {from: 2, to: 8, value: 3, title: '3 emails per week'},
  41. {from: 2, to: 9, value: 5, title: '5 emails per week'},
  42. {from: 2, to: 10,value: 1, title: '1 emails per week'},
  43. {from: 4, to: 6, value: 8, title: '8 emails per week'},
  44. {from: 5, to: 7, value: 2, title: '2 emails per week'},
  45. {from: 4, to: 5, value: 1, title: '1 emails per week'},
  46. {from: 9, to: 10,value: 2, title: '2 emails per week'},
  47. {from: 2, to: 3, value: 6, title: '6 emails per week'},
  48. {from: 3, to: 9, value: 4, title: '4 emails per week'},
  49. {from: 5, to: 3, value: 1, title: '1 emails per week'},
  50. {from: 2, to: 7, value: 4, title: '4 emails per week'}
  51. ];
  52. // Instantiate our network object.
  53. var container = document.getElementById('mynetwork');
  54. var data = {
  55. nodes: nodes,
  56. edges: edges
  57. };
  58. var options = {
  59. nodes: {
  60. shape: 'dot'
  61. },
  62. edges: {
  63. color: '#97C2FC'
  64. }
  65. };
  66. network = new vis.Network(container, data, options);
  67. }
  68. </script>
  69. </head>
  70. <body onload="draw()">
  71. <div id="mynetwork"></div>
  72. </body>
  73. </html>