Chartjs-Remove Legends ChartsJS 2.8.0

0👍

Those labels aren’t the legend, they are the X Axis labels. Try this:

options: {
    scales: {
        xAxes: [{
            ticks: {
                display: false
            }
        }]
    }
}

Leave a comment