-
Notifications
You must be signed in to change notification settings - Fork 0
/
statisticsPage.php
41 lines (41 loc) · 2.11 KB
/
statisticsPage.php
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/bootstrap-table.min.css">
</head>
<body>
<div class="container">
<table
id="vital-signs"
data-toggle="table"
data-show-columns="true"
data-show-export="true"
data-height="460"
data-pagination="true">
<thead>
<tr class="tr-class-1">
<th data-field="id" data-valign="middle">Id</th>
<th data-field="sensor-name" data-custom-attribute="star">Sensor</th>
<th data-field="temperature" data-custom-attribute="forks">Temperatura</th>
<th data-field="heart-rate">Ritmo Cardiaco</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="chart-temperature" class="container"></div>
<div id="chart-heart-rate" class="container"></div>
<script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="https://unpkg.com/tableexport.jquery.plugin/tableExport.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/bootstrap-table.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/extensions/export/bootstrap-table-export.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="drawCharts.js"></script>
</body>
</html>