-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgraph.html
51 lines (48 loc) · 1.47 KB
/
graph.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
---
layout: graph
title: Colorful Traces
---
<!--<canvas width="1200" height="800"></canvas>-->
<div id=cy style="height: 100vh; width: 100vw;"></div>
<div id="insights-sidebar" class="sidebar sidebar-left">
<div class="dismiss">
<i class="fas fa-arrow-left"></i>
</div>
<div class="sidebar-header">
<h5>Insights</h3>
</div>
</div>
<div id="options-sidebar" class="sidebar sidebar-right">
<div class="dismiss">
<i class="fas fa-arrow-right"></i>
</div>
<div class="sidebar-header">
<h5>Options</h3>
</div>
<div id='sidebar-content'>
<div class="form-check">
<input id="paths-check" class="form-check-input" type="checkbox" value="" checked>
<label class="form-check-label" for="paths-check">
Show paths
</label>
</div>
<div class="form-check">
<input id="rest-nodes-check" class="form-check-input" type="checkbox" value="" checked>
<label class="form-check-label" for="rest-nodes-check">
Show restaurant nodes
</label>
</div>
<div class="form-check">
<input id="inter-nodes-check" class="form-check-input" type="checkbox" value="" checked>
<label class="form-check-label" for="form-check-label">
Show intermediate nodes
</label>
</div>
<div class="form-check">
<input id="dest-nodes-check" class="form-check-input" type="checkbox" value="" checked>
<label class="form-check-label" for="dest-nodes-check">
Show destination nodes
</label>
</div>
</div>
</div>