Chartjs-Chartjs line chart gets all scrambled up when an x value coincides with a label

0๐Ÿ‘

โœ…

I fixed it by setting the type to be linear in xAxes:

    scales: {
        xAxes: [
            {
                type: 'linear',
            },
        ],
    },

Leave a comment