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);
}
}
}]
}
Source:stackexchange.com