Chartjs-ChartJS Grid Lines shouldn't surpass the X Axis (Y = 0) Line & Re-style Y Axis Color and Width

0👍

Add ‘tickColor’ to ‘white’. It should fix it.

Ex:

      x: {
        grid: {
          display: true,
          tickColor: 'white'
        },
      }

Leave a comment