Chartjs-How to start Y Axis Line at 0 from right for negative values in chart js 2?

1👍

You need to set position property to right for y-axis ticks, in your second chart …

...
yAxes: [{
   position: 'right',
   gridLines: {
      display: false
   }
}]
...

Here is the working demo on JSFiddle

Leave a comment