Chartjs-Is it possible to avoid giving labels entirely to a line graph from Chart JS

1👍

As a workaround, you can provide a label array containing empty strings:

labels:Array(3).fill('') // 3 represents the size of the data array

In addition, I advise you to take a look at this thread, people proposed different implementation to skip the labels: https://github.com/chartjs/Chart.js/issues/12

Leave a comment