-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrender.html
More file actions
112 lines (108 loc) · 2.06 KB
/
Copy pathrender.html
File metadata and controls
112 lines (108 loc) · 2.06 KB
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
105
106
107
108
109
110
111
112
<!doctype html>
<html>
<head>
<style>
body {
margin: 0px;
}
div#editmenu {
position: absolute;
right: 0;
z-index: 5;
background: #eee;
visibility: hidden;
}
body:hover div#editmenu {
visibility: visible;
}
div#editmenu a {
text-decoration: none;
padding: 2px;
}
div#editmenu a:hover {
background: #aaa;
}
#vizchart {
position: relative;
overflow: hidden;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
#vizlog {
white-space: pre;
}
#vizstatus {
position: absolute;
z-index: 4;
width: 100%;
text-align: center;
padding-top: 1em;
}
#statussub {
padding-left: 1em;
color: #aaa;
}
.vizstep {
margin-top: 2em;
display: none;
}
.vizstep .text {
font-family: mono;
font-weight: bold;
}
.vizstep .grid {
margin-left: 3em;
max-height: 10em;
width: 50%;
overflow: auto;
}
.dy-chart {
border-bottom: 3px solid black;
}
.dy-chart-odd {
background-color: #eee;
}
.dy-line {
background-color: rgba(0,0,0,0.2);
position: absolute;
pointer-events: none; /* don't capture double clicks, etc. */
}
.dy-xline {
height: 100%;
width: 3px;
top: 0;
}
.dy-yline {
height: 3px;
width: 100%;
left: 0;
}
</style>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.js"></script>
<script src="dygraph-combined.js"></script>
<script src="https://www.google.com/jsapi"></script>
<script>
google.load('visualization', '1.0', {
packages: ['table', 'corechart', 'treemap', 'annotatedtimeline']
});
</script>
<script src="heatgrid.js"></script>
<script src="render.js"></script>
</head>
<body>
<div id='editmenu'><a id='editlink' href='' target='_top'>edit</a></div>
<div id='vizstatus'>
<div id='statustext'></div>
<div id='statussub'></div>
<div id='vizlog'></div>
</div>
<div id='vizraw'></div>
<div id='vizchart'></div>
<script>
$('#editlink').attr('href', '/edit' + window.location.search);
afterquery.render(window.location.search);
</script>
</body>
</html>