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.

51 lines
1.2 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: 400px;
  10. height: 400px;
  11. border: 1px solid lightgray;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div id="mynetwork"></div>
  17. <script type="text/javascript">
  18. // create an array with nodes
  19. var nodes = [
  20. {id: 1, label: 'Node 1'},
  21. {id: 2, label: 'Node 2'},
  22. {id: 3, label: 'Node 3'},
  23. {id: 4, label: 'Node 4'},
  24. {id: 5, label: 'Node 5'}
  25. ];
  26. // create an array with edges
  27. var edges = [
  28. {from: 1, to: 2, label: '1 to 2', labelAlignment:'line-center', fontFill:'orange' },
  29. {from: 1, to: 3, label: '1 to 3', labelAlignment:'line-above', fontFill:'green'},
  30. {from: 2, to: 4, label: '2 to 4', fontFill:'red'},
  31. {from: 2, to: 5, label: '2 to 5', labelAlignment:'line-below', fontFill:'#ccd' }
  32. ];
  33. // create a network
  34. var container = document.getElementById('mynetwork');
  35. var data = {
  36. nodes: nodes,
  37. edges: edges
  38. };
  39. var options = {};
  40. var network = new vis.Network(container, data, options);
  41. </script>
  42. </body>
  43. </html>