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.

63 lines
1.5 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. <body>
  15. <div id="mynetwork"></div>
  16. <script type="text/javascript">
  17. // create an array with nodes
  18. var nodesDS = new vis.DataSet();
  19. var nodes = [
  20. {id: 1, label: 'Node 1', value:3, title:'hello world', color:'red'},
  21. {id: 2, label: 'Node 2', value:1, group:'bla'},
  22. {id: 3, label: 'Node 3', value:5},
  23. {id: 4, value:3},
  24. {id: 5, label: 'Node 5', value:2}
  25. ];
  26. // create an array with edges
  27. var edges = new vis.DataSet([
  28. {from: 1, to: 1},
  29. {from: 1, to: 3,id:'e1', dashes:{pattern:[10,15,2,5]}},
  30. {from: 1, to: 2},
  31. {from: 2, to: 4},
  32. {from: 2, to: 5}
  33. ]);
  34. // create a network
  35. var container = document.getElementById('mynetwork');
  36. nodesDS.add(nodes);
  37. var data = {
  38. nodes: nodesDS,
  39. edges: edges
  40. };
  41. var options = {
  42. edges:{color:'red'}
  43. }
  44. var network = new vis.Network(container, data, options);
  45. // network.setOptions({nodes:{color:'red'}})
  46. nodesDS.update({id:1, color:undefined,label:'hi'});
  47. </script>
  48. <pre>
  49. var options = {
  50. manipulation: 'hello',
  51. physics:{barnesHut:{gravitationslPull:34}, solver:'banana'},
  52. groups:{'bla':{color:{backsground:'red'}, borderWidth:5}}
  53. }
  54. </pre>
  55. </body>
  56. </html>