chart.js
: Js Plugin that html5’s canvas element to draw a graph onto a webpage.<html lang="en">
<head>
<meta charset="utf-8" />
<title>Chart.js demo</title>
<script src='Chart.min.js'></script>
</head>
<body>
</body>
</html>
canvas
: this element creates a fixed section where you can render context. The same way a painter has a canvas this tag creates that place so the script can create charts(in our case).fallback content
: content that is displayed when older browser have don’t support your context; video,audio and picture.drawing
: on a canvas you not only are able to use charts but also draw anything you want on the designated section. there are basic shapes but what you build is up to you.color
: the canvas has an option to color all sorts of images. fillStyle = color
strokeStyle = color
drawing text
: By using two methods you can have the canvas render all sorts of text.``` fillText(text, x, y [, maxWidth])
Fills a given text at the given (x,y) position. Optionally with a maximum width to draw.
strokeText(text, x, y [, maxWidth])
Strokes a given text at the given (x,y) position. Optionally with a maximum width to draw.
```