-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AP Exam Score Distribution Visualizer</title>
<style>body {
font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}</style>
</head>
<body>
<label for="examSelector">Choose Exam:</label><select id="examSelector" style="margin-left: 1em; margin-right: 1em;">
<option>Choose Exam</option>
</select>
<label for="chartTypeSelector">Chart Type:</label><select id="chartTypeSelector"
style="margin-left: 1em; margin-right: 1em;">
<option value="line">Line</option>
<option value="stacked-line">Stacked Line</option>
<option value="stacked-bar">Stacked Bar</option>
</select>
<div style="position: relative; height: 40vh; width: 80vw;">
<canvas id="chart" width="1200" height="800"></canvas>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.js"></script>
<script src="script.js"></script>
</body>
</html>