-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgraph.html
More file actions
29 lines (26 loc) · 911 Bytes
/
graph.html
File metadata and controls
29 lines (26 loc) · 911 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Statistics</title>
<link rel="shortcut icon" href="icons/default.png" type="image/x-icon">
<meta name="robots" content="noindex, noarchive, nosnippet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="statistics page of SimplyPrivate">
<link rel="stylesheet" href="css/styles-count.css">
<link rel="stylesheet" href="css/graph.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style>
</style>
</head>
<body>
<h1>SimplyPrivate Monthly Statistics</h1>
<div class="chart-container">
<canvas id="statisticsChart"></canvas>
</div>
<button class="pb gpush">Chart</button>
<button class="gb" onclick="location.href = 'table.html'">Table</button>
<div class="bline"></div>
<div class="afline"></div>
<script src="js/graph.js"></script>
</body>
</html>