forked from yusufshakeel/chartjs2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (25 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>ChartJS 2.x</title>
</head>
<body>
<h1>Welcome to ChartJS 2.x tutorial series.</h1>
<p>Hello I am Yusuf Shakeel and in this tutorial we will learn about ChartJS which is a simple yet flexible JavaScript charting for designers & developers.
</p>
<p>Tutorial Link: <a href="https://www.dyclassroom.com/chartjs/getting-started">dyclassroom.com/chartjs/getting-started</a>
</p>
<h2>Important links</h2>
<p>The ChartJS documentation is here.
</p>
<p>The code we will cover in this tutorial are there in my GitHub repository.<br>
<a href="https://github.com/yusufshakeel/chartjs">chartjs</a> for version 1.x<br>
<a href="https://github.com/yusufshakeel/chartjs2">chartjs2</a> for version 2.x
</p>
<p>My YouTube tutorial videos <a href="https://www.youtube.com/playlist?list=PLG6ePePp5vvY1dnDrPcCyrgBFAWXy-9uY">playlist</a> on ChartJS.
</p>
<!-- javascript -->
<script src="js/jquery.min.js"></script>
<script src="js/Chart.min.js"></script>
</body>
</html>