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.

85 lines
3.3 KiB

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Network | Scalable images</title>
  5. <style type="text/css">
  6. 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. <script type="text/javascript">
  17. var DIR = 'img/soft-scraps-icons/';
  18. var nodes = null;
  19. var edges = null;
  20. var network = null;
  21. // Called when the Visualization API is loaded.
  22. function draw() {
  23. // create people.
  24. // value corresponds with the age of the person
  25. var DIR = 'img/soft-scraps-icons/';
  26. nodes = [
  27. {id: 1, value: 2, shape: 'image', label: 'Algie', title: 'Algie (2 years old)', image: DIR + 'Smiley-Angry-icon.png'},
  28. {id: 2, value: 31, shape: 'image', label: 'Alston', title: 'Alston (31 years old)', image: DIR + 'Smiley-Grin-icon.png'},
  29. {id: 3, value: 12, shape: 'image', label: 'Barney', title: 'Barney (12 years old)', image: DIR + 'User-Administrator-Blue-icon.png'},
  30. {id: 4, value: 16, shape: 'image', label: 'Coley', title: 'Coley (16 years old)', image: DIR + 'User-Administrator-Green-icon.png'},
  31. {id: 5, value: 17, shape: 'image', label: 'Grant', title: 'Grant (17 years old)', image: DIR + 'User-Coat-Blue-icon.png'},
  32. {id: 6, value: 15, shape: 'image', label: 'Langdon', title: 'Langdon (15 years old)', image: DIR + 'User-Coat-Green-icon.png'},
  33. {id: 7, value: 6, shape: 'image', label: 'Lee', title: 'Lee (6 years old)', image: DIR + 'User-Coat-Red-icon.png'},
  34. {id: 8, value: 5, shape: 'image', label: 'Merlin', title: 'Merlin (5 years old)', image: DIR + 'User-Executive-Green-icon.png'},
  35. {id: 9, value: 30, shape: 'image', label: 'Mick', title: 'Mick (30 years old)', image: DIR + 'User-Preppy-Blue-icon.png'},
  36. {id: 10, value: 18, shape: 'image', label: 'Tod', title: 'Tod (18 years old)', image: DIR + 'User-Preppy-Red-icon.png'}
  37. ];
  38. // create connetions between people
  39. // value corresponds with the amount of contact between two people
  40. edges = [
  41. {from: 2, to: 8, value: 3, title: '3 emails per week'},
  42. {from: 2, to: 9, value: 5, title: '5 emails per week'},
  43. {from: 2, to: 10,value: 1, title: '1 emails per week'},
  44. {from: 4, to: 6, value: 8, title: '8 emails per week'},
  45. {from: 5, to: 7, value: 2, title: '2 emails per week'},
  46. {from: 4, to: 5, value: 1, title: '1 emails per week'},
  47. {from: 9, to: 10,value: 2, title: '2 emails per week'},
  48. {from: 2, to: 3, value: 6, title: '6 emails per week'},
  49. {from: 3, to: 9, value: 4, title: '4 emails per week'},
  50. {from: 5, to: 3, value: 1, title: '1 emails per week'},
  51. {from: 2, to: 7, value: 4, title: '4 emails per week'}
  52. ];
  53. // create a network
  54. var container = document.getElementById('mynetwork');
  55. var data = {
  56. nodes: nodes,
  57. edges: edges
  58. };
  59. var options = {
  60. nodes: {
  61. widthMin: 20, // min width in pixels
  62. widthMax: 100 // max width in pixels
  63. },
  64. edges: {
  65. color: 'lightgray'
  66. }
  67. };
  68. network = new vis.Network(container, data, options);
  69. }
  70. </script>
  71. </head>
  72. <body onload="draw()">
  73. <div id="mynetwork"></div>
  74. <div id="info"></div>
  75. </body>
  76. </html>