-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (53 loc) · 1.82 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" crossorigin="anonymous"></link>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.css"></link>
</head>
<body>
<script src="node_modules/json-formatter-js/dist/json-formatter.js"></script>
<script src="node_modules/c3/c3.min.js"></script>
<script src="node_modules/d3/d3.min.js"></script>
<script src="data/data.js"></script>
<script src="report/report.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function(event) {
report();
});
</script>
<div class="row">
<div class="col-sm-offset-4 col-sm-4">
<h2>Event Binding Report</h2>
</div>
</div>
<div class="row">
<div class="col-sm-offset-4 col-sm-4">
<h4>Total_No_Of_Events : <span id="totalEventCount"></span> </h4>
<h4>No_Of_System_Events : <span id="systemEvents"></span> </h4>
<h4>No_Of_Custom_Events : <span id="customEvents"></span> </h4>
</div>
</div>
<div class="row">
<div class="col-lg-5" >
<h3 style="text-align : center">Event Map</h3>
<div id="eventMapChart">
</div>
</div>
<div class="col-md-offset-1 col-lg-5" >
<h3 style="text-align : center">Container Map</h3>
<div id="containerMapChart">
</div>
</div>
</div>
<div class="row">
<div class="col-lg-5" id="eventMapJSON">
</div>
<div class="col-md-offset-1 col-lg-5" id="containerMapJSON">
</div>
</div>
</body>
</html>