Charts.js : How to remove the Vertical Black lines in Bar Chart

0👍

Got the Answer now as in Chart JS 3 they have changed to grid instead of the common gridlines command.

Now in chart JS 3 can use :

x: {
     grid:{
           color:'red',
           display: false,
        }
  },
  

  y:{
      ticks: {
      beginAtZero: true
    },

  grid: {
        color: 'green',
        display: true,
    }
  }

Result ScreenShot

Leave a comment