[Chartjs]-ChartJS label on each side of the chart

2👍

Inside of the options object, add two xAxes scales:

scales: {
    xAxes: [{
        display: true,
        position: 'top'
    },{
        display: true,
        position: 'bottom'
    }]
}

There are a lot of examples on the website and github

Leave a comment