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.
 
 
 

45 lines
907 B

<!doctype html>
<html>
<head>
<title>Graph | Basic usage</title>
<script type="text/javascript" src="../../vis.js"></script>
</head>
<body>
<div id="mygraph"></div>
<script type="text/javascript">
// create an array with nodes
var nodes = [
{id: 1, text: 'Node 1'},
{id: 2, text: 'Node 2'},
{id: 3, text: 'Node 3'},
{id: 4, text: 'Node 4'},
{id: 5, text: 'Node 5'}
];
// create an array with edges
var edges = [
{from: 1, to: 2},
{from: 1, to: 3},
{from: 2, to: 4},
{from: 2, to: 5}
];
// specify options
var options = {
width: '400px',
height: '400px'
};
// create a graph
var graph = new vis.Graph(document.getElementById('mygraph'));
// draw the graph with the created data and options
graph.draw(nodes, edges, options);
</script>
</body>
</html>