This repository has been archived by the owner on Apr 21, 2022. It is now read-only.
forked from valohai/cytoscape.js-elk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo-disco.html
75 lines (64 loc) · 1.77 KB
/
demo-disco.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE>
<html>
<head>
<title>cytoscape-elk.js demo</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<!-- the demo uses fetch() -->
<script src="https://unpkg.com/[email protected]/js/browser/bluebird.js"></script>
<script src="https://unpkg.com/[email protected]/fetch.js"></script>
<script src="https://unpkg.com/cytoscape/dist/cytoscape.min.js"></script>
<!-- for testing with local version of cytoscape.js -->
<!--<script src="../cytoscape.js/build/cytoscape.js"></script>-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.10/lodash.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/elk.bundled.js"></script>
<script src="cytoscape-elk.js"></script>
<style>
body {
font-family: helvetica neue, helvetica, liberation sans, arial, sans-serif;
font-size: 14px;
}
#cy {
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 999;
}
h1 {
opacity: 0.5;
font-size: 1em;
font-weight: bold;
}
</style>
</head>
<body>
<h1>cytoscape-elk demo</h1>
<div id="cy"></div>
<script>
(function(){
var toJson = function(res){
return res.json();
};
var cy = window.cy = cytoscape({
container: document.getElementById('cy'),
elements: fetch('example-graphs/two-planar-chains.json').then(toJson),
layout: {
name: 'elk',
elk: {
algorithm: 'disco',
componentLayoutAlgorithm: 'stress'
}
},
style: [
{
selector: 'edge',
style: {
}
}
]
});
})();
</script>
</body>
</html>