Chartjs-Move x-axis to pass through given y-axis value in chart.js

0👍

Not sure whether I understand your problem well. In case you want to your y-axis value start with 1 instead of 0.6 there is way to tell Chart.js by passing some options about these values.
Modifying your options definition like this:

var options = {
  scales: {
        yAxes: [{
            ticks: {
              min: 1
            }
        }]
    }
};

should do the tick!

Check out the related documentation where you can find some more options and examples how to use them 😉

Leave a comment