Chartjs-How do I persist the gridlines for ticks that are not displayed? [Chart.js]

0๐Ÿ‘

I think there is no way to hide label and keep displaying gridlines. But you could keep all labels and gridlines by set autoSkip option off:

ticks: {
        autoSkip: false
       }        

Leave a comment