Chart Js
Line Chart
A line chart is a way of plotting data points on a line. Often, it is used to show trend data, or the comparison of two data sets.
<!-- page js -->
<script src="../assets/vendors/chartjs/Chart.min.js"></script>
Stacked Area Chart
Line charts can be configured into stacked area charts by changing the settings on the y axis to enable stacking. Stacked area charts can be used to show how one data trend is made up of a number of smaller pieces.
<!-- page js -->
<script src="../assets/vendors/chartjs/Chart.min.js"></script>
Bar Chart
A bar chart provides a way of showing data values represented as vertical bars. It is sometimes used to show trend data, and the comparison of multiple data sets side by side.
<!-- page js -->
<script src="../assets/vendors/chartjs/Chart.min.js"></script>
Radar Chart
A radar chart is a way of showing multiple data points and the variation between them. They are often useful for comparing the points of two or more different data sets.
<!-- page js -->
<script src="../assets/vendors/chartjs/Chart.min.js"></script>
Doughnut Chart
Pie charts are probably the most commonly used charts. They are divided into segments, the arc of each segment shows the proportional value of each piece of data.
<!-- page js -->
<script src="../assets/vendors/chartjs/Chart.min.js"></script>
Polar Chart
Pie charts are probably the most commonly used charts. They are divided into segments, the arc of each segment shows the proportional value of each piece of data.
<!-- page js -->
<script src="../assets/vendors/chartjs/Chart.min.js"></script>