[Chartjs]-Chartjs show labels but not ticks

1๐Ÿ‘

โœ…

How about setting the gridline display to false?

xAxes: [{
    gridLines: {display:false}
    }]

FIDDLE HERE

0๐Ÿ‘

For Chartjs 2.9.3, you can use:

    xAxes: [{
      gridLines: {
        drawTicks: false,
       }
    }]

Leave a comment