-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
21 lines (18 loc) · 1.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/3.3.0/math.min.js"></script>
</head>
<body>
<div style="display: flex; flex-wrap: wrap; width: 820; justify-content: space-around;">
<div style="width: 400; height: 200; border:2px solid; margin: 10px; flex: 1 1 0;"><canvas id="academiaWageChart"></canvas></div>
<div style="width: 400; height: 200; border:2px solid; margin: 10px; flex: 1 1 0;"><canvas id="academiaYoeChart"></canvas></div>
<div style="width: 400; height: 200; border:2px solid; margin: 10px; flex: 1 1 0;"><canvas id="degreeWageChart"></canvas></div>
<div style="width: 400; height: 200; border:2px solid; margin: 10px; flex: 1 1 0;"><canvas id="degreeYoeChart"></canvas></div>
<div style="width: 500; height: 200; border:2px solid; margin: 10px;"><canvas style="width: 100%; height: 100%;" id="yoeChart"></canvas></div>
<div style="width: 800; height: 200; border:2px solid; margin: 10px;"><canvas style="width: 100%; height: 100%;" id="regionWageChart"></canvas></div>
<div style="width: 800; height: 200; border:2px solid; margin: 10px;"><canvas style="width: 100%; height: 100%;" id="regionYoeChart"></canvas></div>
</div>
<script defer src="./test.js"></script>
</body>
</html>