-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 871 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Arm Mbed OS application</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<div id="title">
<h1>Arm Mbed OS application</h1>
</div>
<div id="subtitle">
<h2>Static memory analisys</h2>
</div>
<div id="main">
<div id="sequence"></div>
<div id="chart">
<div id="explanation" style="visibility: hidden;">
<span id="percentage"></span><br/>
</div>
</div>
</div>
<div id="sidebar">
<input type="checkbox" id="togglelegend" checked> Legend<br/>
<div id="legend" style="visibility: ""></div>
</div>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="app.js"></script>
<script type="text/javascript">
// Hack to make this example display correctly in an iframe on bl.ocks.org
d3.select(self.frameElement).style("height", "700px");
</script>
</html>