-
Notifications
You must be signed in to change notification settings - Fork 0
/
device_3089.html
69 lines (65 loc) · 1.78 KB
/
device_3089.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
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>Legend Positions</title>
<link rel="stylesheet" href="main.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<!--
<script src="/home/joeller/node_modules/chart.js/dist/Chart.js"></script>
-->
<script src="javascripts/d3.v3.min.js" charset="utf-8"></script>
<script src="javascripts/c3.min.js"></script>
<!-- Load papaparse.js -->
<script src="javascripts/papaparse.min.js"></script>
<script src="utils.js"></script>
</head>
<body>
<div class="showid">
<p align="center" style="font-size:25px">device 3089, patient 2</p>
</div>
<div class="chartcontainer">
<!--expired CO2 -->
<div class="mychart">
<canvas id="myChart" ></canvas>
</div>
<div class="number">
<p id="CO2" style="font-size:50px"></p>
</div>
<div class="mode">
<p id="modeval" style="font-size:15px"></p>
</div>
<button class="homebuttom" type="button" onclick= "window.location.href = 'index.html';">Patient Overview</button>
<button class="togglemonitoring" type="button">Turn off Monitoring</button>
</div>
<!-- frequency -->
<!--
<div class="chartcontainer">
<div class="mychart">
<canvas id="myChart1" ></canvas>
</div>
<div class="number">
<p id="frequency" style="font-size:50px"></p>
</div>
</div>
-->
<!-- mve -->
<div class="chartcontainer">
<div class="mychart">
<canvas id="myChart1" ></canvas>
</div>
<div class="number">
<p id="mve" style="font-size:50px"></p>
</div>
</div>
<!-- pressure -->
<div class="chartcontainer">
<div class="mychart">
<canvas id="myChart2" ></canvas>
</div>
<div class="number">
<p id="pressure" style="font-size:50px"></p>
</div>
</div>
<script src="plot_3089.js"></script>
</body>
</html>