-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_cytoscape_init.js
104 lines (97 loc) · 2.54 KB
/
_cytoscape_init.js
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
var cy = cytoscape({
container: document.getElementById('cy'), // container to render in
elements: [ // list of graph elements to start with
<?php foreach ($nodes as $node){ ?>
{
group: 'nodes', data: { id: '<?php echo getNodeId($node); ?>' }, classes: '<?php echo getNodeClass($node); ?>'
},
<?php } ?>
<?php foreach ($edges as $edge){ ?>
{
data: { id: '<?php echo getEdgeId($edge); ?>', source: '<?php echo getSourceId($edge); ?>', target: '<?php echo getDestId($edge); ?>', label: '<?php echo getEdgeWeight($edge); ?>', weight: <?php echo getEdgeWeight($edge); ?> }, classes: 'autorotate'
},
<?php } ?>
],
style: [ // the stylesheet for the graph
{
selector: 'node',
style: {
'background-color': '#666',
'label': 'data(id)'
}
},
{
selector: 'edge',
style: {
'label': 'data(label)',
'width': 3,
'line-color': '#ccc'
//'target-arrow-color': '#ccc',
//'target-arrow-shape': 'triangle'
}
},
{
selector: '.autorotate',
style: {
'edge-text-rotation': 'autorotate'
}
},
{
selector: '.initial',
style: {
'background-color': '#FFCC00'
}
},
{
selector: '.selected',
style: {
'line-color': '#00FF00',
'background-color': '#66CC00'
}
},
{
selector: '.considered',
style: {
'line-color': '#FF0000',
'background-color': '#66CC00'
}
}],
layout: {
name: 'random',
fit: true, // whether to fit to viewport
padding: 10, // fit padding
boundingBox: undefined, // constrain layout bounds; { x1, y1, x2, y2 } or { x1, y1, w, h }
animate: false, // whether to transition the node positions
animationDuration: 500, // duration of animation in ms if enabled
animationEasing: undefined, // easing of animation if enabled
ready: undefined, // callback on layoutready
stop: undefined // callback on layoutstop
},
// initial viewport state:
zoom: 1,
pan: { x: 0, y: 0 },
// interaction options:
minZoom: 0.5,
maxZoom: 2,
zoomingEnabled: true,
userZoomingEnabled: true,
panningEnabled: true,
userPanningEnabled: false,
boxSelectionEnabled: false,
selectionType: 'single',
touchTapThreshold: 8,
desktopTapThreshold: 4,
autolock: false,
autoungrabify: false,
autounselectify: false,
// rendering options:
headless: false,
styleEnabled: true,
hideEdgesOnViewport: false,
hideLabelsOnViewport: false,
textureOnViewport: false,
motionBlur: true,
motionBlurOpacity: 0.2,
wheelSensitivity: 1,
pixelRatio: 'auto'
});