UNPKG

visjs-network

Version:

A dynamic, browser-based network visualization library.

23 lines (22 loc) 584 B
<!doctype html> <html> <head> <title>Network | Basic usage</title> <script type='text/javascript' src='../../../dist/vis.js'></script> <link href='../../../dist/vis-network.min.css' rel='stylesheet' type='text/css' /> <style type='text/css'> #mynetwork { width: 600px; height: 400px; border: 1px solid lightgray; } </style> </head> <body> <p> There are a lot of options with arrows! They can also be combined with dashed lines. </p> <div id='mynetwork'></div> <script src='./index.js' type='text/javascript'></script> </body> </html>