1

As i just migrate from version 2.9.4 to 3.2.2 every thing working fine. the only one issue that i facing is vertical gird line not taking full hight of the canvas here is Stackbliz. enter image description here

LeeLenalee
  • 27,463
  • 6
  • 45
  • 69
bangash
  • 398
  • 1
  • 4
  • 12

1 Answers1

0

I was assuming that instead of defining scales.y.grid.display: false, scales.y.grid.drawOnChartArea: false would work, but it doesn't.

As a workaround, you can define scales.y.grid.color as shown below.

scales: {
  y: {        
    grid: {
      color: ['rgb(180,180,180)', null, null, null, 'rgb(180,180,180)'],
      drawTicks: false
    },
    ...

Please take a look at your amended StackBlitz and see how it works.

uminder
  • 23,831
  • 5
  • 37
  • 72