-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsummary_stacked_histogram.html
More file actions
184 lines (124 loc) · 3.98 KB
/
summary_stacked_histogram.html
File metadata and controls
184 lines (124 loc) · 3.98 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<link href="/static/d4.css" rel="stylesheet" />
</head>
<body>
<script src="/static/d4.js"></script>
<script src="/static/d3.js"></script>
<form role="form" method="GET" action="/">
<button type="submit" class="btn btn-primary" id="homeButton">Home</button>
</form>
<p> {{ histogram_data }} </p><br>
<br><p>These are the search criteria that have been dispalyed {{ display_labels }}</p>
</body>
<style>
table, td, th{
border: 1px solid #ddd;
text-align: left;
}
table {
border-collapse: collapse;
width: 45%;
}
th, td{
padding: 5px;
}
table#legend{
border-collapse: collapse;
width: 45%
}
table#legend th{
}
chart1 .d4 .series0 .bar.fill, chart1.load {
fill: darkgray;
background-color: darkgray;
}
chart1 .d4 .series1 .bar.fill, chart1.execute {
fill: dodgerblue;
background-color: dodgerblue;
}
chart1 .d4 .series2 .bar.fill, chart1.save {
fill: crimson;
background-color: crimson;
}
chart1 .d4 .series3 .bar.fill, chart1.msc{
fill: green;
background-color: green;
}
</style>
<script>
if (document.getElementById('nextButton').clicked == true){
alert("next button was clicked")
}
</script>
<body>
<div style="width:400px;">
<div style="float: left; width:130px">
<form role="form" method="POST" action="/previous">
<button type="submit" class="btn btn-primary" id="previousButton">Previous Histogram</button>
</form>
</div>
<div style="float: right; width:255px">
<form role="form" method="POST" action="/next">
<button type="submit" class="btn btn-primary" id="nextButton">Next Histogram</button>
</form>
</div>
</div>
</body>
<table id="legend">
<tr>
<th bgcolor="darkgray" style="color:darkgray;">He</th>
<td>Load Time</td>
<th bgcolor="dodgerblue" style="color:dodgerblue">He</th>
<td>Execution Time</td>
<th bgcolor="crimson" style="color:crimson">He</th>
<td>Save Time</td>
<th bgcolor="green" style="color:green">He</th>
<td>Over Head</td>
</tr>
</table>
<chart1>
</chart1>
<table id="legendChart">
</table>
<script>
'use strict';
$(document).ready(function(){
var data = {{ histogram_data|safe }};
var numDisplays = {{ display_count|safe }};
var legendData = {{ table_values|safe }};
document.getElementById("legendChart").innerHTML = legendData[0]
if (numDisplays[0] == 0) {
document.getElementById("previousButton").disabled = true;
}
if (numDisplays[0] == numDisplays[1]) {
document.getElementById("nextButton").disabled = true;
}
var parsedData = d4.parsers.nestedStack()
.x('x-axis')
.y('time_type')
.value('time')(data);
var chart = d4.charts.stackedColumn()
.x(function(x){
x.key('x-axis');
})
.y(function(y){
y
.key('time');
});
d3.select('chart1')
.datum(parsedData.data)
.call(chart);
});
</script>
</html>