-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (52 loc) · 2.42 KB
/
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
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
<!DOCTYPE html>
<html>
<head>
<title>Graphs from CSVs</title>
<link rel='stylesheet' href='stylesheets/style.css' />
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!-- Fontawesome -->
<script src="https://kit.fontawesome.com/1c0f16d579.js" crossorigin="anonymous"></script>
<!-- Load c3.css -->
<link href="stylesheets/c3.css" rel="stylesheet" type="text/css">
<!-- Load d3.js and c3.js -->
<script src="scripts/min/d3.v3.min.js" charset="utf-8"></script>
<script src="scripts/min/c3.min.js"></script>
<!-- Load papaparse.js -->
<script src="scripts/min/papaparse.min.js"></script>
</head>
<body>
<div class="container mt-5">
<div class="d-flex justify-content-between align-items-center">
<h1>Graphs from CSV</h1>
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label id="label-top-line" class="btn btn-outline-dark active">
<input type="radio" name="options" id="top-line" autocomplete="off" checked> Top line
</label>
<label id="label-bottom-line" class="btn btn-outline-dark">
<input type="radio" name="options" id="bottom-line" autocomplete="off"> Bottom Line
</label>
</div>
</div>
<div id="top-line-graphs">
<h2>Sales and revenues per <span>month</span></h2>
<div id="chart-1" class="mt-5 mb-5"></div>
<h2>Sales and revenues per <span>state</span></h2>
<div id="chart-2" class="mt-5 mb-5"></div>
<h2>Sales and revenues per <span>section</span></h2>
<div id="chart-3" class="mt-5 mb-5"></div>
</div>
<div id="bottom-line-graphs" class="d-none">
<h2>Customer and employee satisfaction per <span>month</span></h2>
<div id="chart-4" class="mt-5 mb-5"></div>
<h2>Customer and employee satisfaction per <span>state</span></h2>
<div id="chart-5" class="mt-5 mb-5"></div>
<h2>Customer and employee satisfaction per <span>section</span></h2>
<div id="chart-6" class="mt-5 mb-5"></div>
</div>
</div>
<script src="scripts/script.js"></script>
<script src="scripts/graphs/data_topline.js"></script>
<script src="scripts/graphs/data_bottomline.js"></script>
</body>
</html>