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.
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Network | Basic usage</title>
|
|
|
|
<script type="text/javascript" src="http://www.visjs.org/dist/vis.js"></script>
|
|
<link href="http://www.visjs.org/dist/vis.css" rel="stylesheet" type="text/css" />
|
|
|
|
<style type="text/css">
|
|
#div_graph {
|
|
width: 1400px;
|
|
height: 1000px;
|
|
border: 1px solid lightgray;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<p>
|
|
Create a simple network with some nodes and edges.
|
|
</p>
|
|
|
|
<div id="div_graph"></div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|