-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
37 lines (26 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Chart.js Bubble Chart Template by handsondataviz.org</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<!-- Load jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Load Chart.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.bundle.min.js"></script>
<!-- Load PapaParse to read csv files -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.1.0/papaparse.min.js"></script>
</head>
<body>
<canvas id="container" style="width:100%; height:400px;"></canvas>
<p style="font-family: Helvetica; color: #333; padding: 1em 2em; font-size: 12px">
Sources: TrendCT, NY Times, Stanford Ed Data Archive, American Community Survey,
CT State Department of Education
<br>
<a href="https://github.com/HandsOnDataViz/chartjs-bubble">View data and code</a>,
created by <a href="https://handsondataviz.org/">HandsOnDataViz</a>
with <a href="https://www.chartjs.org/">Chart.js</a>
</p>
<script src="script.js"></script>
</body>
</html>