I am trying to make a bar chart where it will displays data over and under the base starting point which is not 0.
I tried using min and max of yAxes scales option but it just hides the bars that exceeds the set min/max with 'beginAtZero' set to false.
scales: {
yAxes: [{
ticks: {
min: 20,
scaleBeginAtZero: false,
beginAtZero: false
}
}],
}