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.

61 lines
1.5 KiB

9 years ago
  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-network.min.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 are a lot of options with arrows! They can also be combined with dashed lines.
  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: 'Node 1'},
  24. {id: 2, label: 'Node 2'},
  25. {id: 3, label: 'Node 3'},
  26. {id: 4, label: 'Node 4'},
  27. {id: 5, label: 'Node 5'},
  28. {id: 6, label: 'Node 6'},
  29. {id: 7, label: 'Node 7'},
  30. {id: 8, label: 'Node 8'}
  31. ]);
  32. // create an array with edges
  33. var edges = new vis.DataSet([
  34. {from: 1, to: 8, arrows:'to', dashes:true},
  35. {from: 1, to: 3, arrows:'to'},
  36. {from: 1, to: 2, arrows:'to, from'},
  37. {from: 2, to: 4, arrows:'to, middle'},
  38. {from: 2, to: 5, arrows:'to, middle, from'},
  39. {from: 5, to: 6, arrows:{to:{scaleFactor:2}}},
  40. {from: 6, to: 7, arrows:{middle:{scaleFactor:0.5},from:true}}
  41. ]);
  42. // create a network
  43. var container = document.getElementById('mynetwork');
  44. var data = {
  45. nodes: nodes,
  46. edges: edges
  47. };
  48. var options = {};
  49. var network = new vis.Network(container, data, options);
  50. </script>
  51. </body>
  52. </html>