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.
 
 
 

35 lines
820 B

<!doctype html>
<html>
<head>
<title>Graph | DOT Language</title>
<script type="text/javascript" src="../../vis.js"></script>
<style type="text/css">
html, body, #mygraph {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
</style>
</head>
<body>
<div id="mygraph"></div>
<script type="text/javascript">
// parse data in DOT-notation
var dot = 'digraph {node[shape=circle]; 1 -> 1 -> 2; 2 -> 3; 2 -- 4; 2 -> 1 }';
var data = vis.Graph.util.DOTToGraph(dot);
// create a graph
var container = document.getElementById('mygraph');
var graph = new vis.Graph(container, data);
// resize the network when window resizes
window.onresize = function () {
graph.redraw()
};
</script>
</body>
</html>