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.

30 lines
581 B

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Network | Basic usage</title>
  5. <script type="text/javascript" src="http://www.visjs.org/dist/vis.js"></script>
  6. <link href="http://www.visjs.org/dist/vis.css" rel="stylesheet" type="text/css" />
  7. <style type="text/css">
  8. #div_graph {
  9. width: 1400px;
  10. height: 1000px;
  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="div_graph"></div>
  20. <script type="text/javascript">
  21. </script>
  22. </body>
  23. </html>