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.2 KiB

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Graph | Selections</title>
  5. <script type="text/javascript" src="../../dist/vis.js"></script>
  6. <style type="text/css">
  7. #mygraph {
  8. width: 400px;
  9. height: 400px;
  10. border: 1px solid lightgray;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <div id="mygraph"></div>
  16. <div id="info"></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},
  29. {from: 1, to: 3},
  30. {from: 2, to: 4},
  31. {from: 2, to: 5}
  32. ];
  33. // create a graph
  34. var container = document.getElementById('mygraph');
  35. var data = {
  36. nodes: nodes,
  37. edges: edges
  38. };
  39. var options = {
  40. nodes: {
  41. shape: 'box'
  42. }
  43. };
  44. graph = new vis.Graph(container, data, options);
  45. // add event listener
  46. graph.on('select', function(properties) {
  47. document.getElementById('info').innerHTML += 'selection: ' + JSON.stringify(properties) + '<br>';
  48. });
  49. // set initial selection (id's of some nodes)
  50. graph.setSelection([3, 4, 5]);
  51. </script>
  52. </body>
  53. </html>