Chartjs-Chart.js Line chart doesn't display line past a certain point in the chart

0👍

Adding these two lines of code to the script fixed the issue for me:

  Chart.helpers.canvas.clipArea = function() {};
  Chart.helpers.canvas.unclipArea = function() {};

Leave a comment