Chartjs is a pretty excellent open source tool, but had a quick question about a bar chart I\'m trying to create. Given this chart data:
var chartData =
var myChart = new Chart(ctx, { type: 'bar', data:data, options: { responsive: true, scales: { yAxes: [{ ticks: { beginAtZero: true, steps: 10, stepValue: 6, max: 60 //max value for the chart is 60 } } }] } } });