downloas chart.js script code example
Example 1: chart.js cdn
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
//This will give you the Chart.js CDN
Example 2: chartjs min
var options = {
scales: {
yAxes: [{
display: true,
ticks: {
suggestedMin: 0, // minimum will be 0, unless there is a lower value.
// OR //
beginAtZero: true // minimum value will be 0.
}
}]
}
};