-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircular-graph.html
More file actions
31 lines (29 loc) · 1.2 KB
/
circular-graph.html
File metadata and controls
31 lines (29 loc) · 1.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Circular Graph</title>
<script src="/static/dashboard-guard.js"></script>
<script src="https://cdn.socket.io/4.5.0/socket.io.min.js"></script>
<script src="https://d3js.org/d3.v7.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"/>
<link href="/static/style.css" rel="stylesheet">
<link href="/static/circular-graph.css" rel="stylesheet">
</head>
<body class="no-scroll">
<header id="main-header"></header>
<main class="container flex-grow-1 d-flex flex-column" style="padding-top: 80px; padding-bottom: 2rem;">
<div id="activity-graph-container" class="flex-grow-1">
<svg height="100%" id="activity-svg" width="100%">
<text id="loading-text" x="50%" y="50%" text-anchor="middle">
En attente de données...
</text>
</svg>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="/static/nav.js"></script>
<script src="/static/common-graph.js"></script>
<script src="/static/circular-graph.js"></script>
</body>
</html>