Chartjs-Skip x labels on line chart

0👍

If you didn’t specify autoSkip: false for ticks of x-axes, you should have x-axes labels auto skipped. It is by default true. So you shouldn’t have overwhelming labels, plus tooltips should still show those auto skipped data.

 xAxes: [{
     ticks: {
         autoSkip: false,
         fontSize: 11,
         ...
     }
 }]

Leave a comment