-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcrrt.html
More file actions
23 lines (22 loc) · 781 Bytes
/
crrt.html
File metadata and controls
23 lines (22 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Huvis Graph Visualization</title>
<link href="/css/CRRT.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="edgectrl" class="CRRT"></div>
<script src="http://d3js.org/d3.v3.js" charset="utf-8"></script>
<script src="js/mintree2d3tree.js" charset="utf-8"></script>
<script src="js/crrt.js" charset="utf-8"></script>
<script>
var CRRTT;
window.addEventListener('load',function(){
CRRTT = new CollapsibleRadialReingoldTilfordTree();
//CRRTT.show_tree_in("orlando_tag_tree_PRETTY.json","edgectrl");
//CRRTT.show_tree_in(CRRTT.demo_tree,"edgectrl",false);
CRRTT.show_tree_in("flare.json","edgectrl");
});
</script>
</body>
</html>