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.

55 lines
1.1 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. There two type of liner endings. The classical "arrow" (default) and "circle".
  18. </p>
  19. <div id="mynetwork"></div>
  20. <script type="text/javascript">
  21. // create an array with nodes
  22. var nodes = new vis.DataSet([
  23. {id: 1, label: 'X'},
  24. {id: 2, label: 'Y'},
  25. {id: 3, label: 'Z'}
  26. ]);
  27. // create an array with edges
  28. var edges = new vis.DataSet([
  29. {from: 1, to: 2, arrows:'to'},
  30. {from: 2, to: 3, arrows:{
  31. to: {
  32. type: 'circle'
  33. }
  34. }},
  35. ]);
  36. // create a network
  37. var container = document.getElementById('mynetwork');
  38. var data = {
  39. nodes: nodes,
  40. edges: edges
  41. };
  42. var options = {};
  43. var network = new vis.Network(container, data, options);
  44. </script>
  45. </body>
  46. </html>