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.

57 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: 600px;
  10. height: 400px;
  11. border: 1px solid lightgray;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <p>
  17. Create a simple network with some nodes and edges.
  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: 'N1'},
  24. {id: 2, label: 'N2'}
  25. ]);
  26. var edges = new vis.DataSet([
  27. {id: '1%2', from: 1, to: 2},
  28. {id: '2%1',from: 2, to: 1}
  29. ]);
  30. var container = document.getElementById('mynetwork');
  31. var data = {
  32. nodes: nodes,
  33. edges: edges
  34. };
  35. var options = {edges:{arrows:'to'}};
  36. var network = new vis.Network(container, data, options);
  37. edges.update({id: '1%2', arrows:{from:{enabled:true}}});
  38. edges.update({id: '1%2', arrows: null});
  39. //
  40. // edges.update({id: '1%2', width: 20});
  41. // also try after:
  42. // edges.update({id: '2%1', color: '#00ff00'});
  43. </script>
  44. </body>
  45. </html>