[Chartjs]-Chart.js: Reverse bar chart with regular bars (Bottom to top instead of top to bottom)

2πŸ‘

βœ…

I think you could β€œinvert” your values with 6 minus value for the value you want to display and then override the labels at y-axis

options: {
        scales: {
            yAxes: [{
                ticks: {
                    callback: function(value, index, values) {
                        return (6 - value);
                    }
                }
            }]
        }

Leave a comment