Javascript examples for Chart.js:Chart Configuration
how to set start value as "0" in chartjs?
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.1.4/Chart.min.js"></script> <script type="text/javascript"> window.onload=function(){/*from w w w . j a va 2s . c o m*/ var ctx = document.getElementById("myChart"); var myChart = new Chart(ctx, { type: 'line', data: { labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"], datasets: [{ label: '# of Votes', data: [72, 49, 43, 49, 35, 82] }] }, options: { scales: { yAxes: [{ ticks: { beginAtZero: true } }] } } }); } </script> </head> <body> <canvas id="myChart" width="400" height="400"></canvas> </body> </html>