When I use stacked groups, I want the possibility to display stack label if correct option is selected.
this.chart = new Chart('canvas', {
type: 'bar',
data: {
labels: this.barChartLabels,
datasets: this.datasets;
},
options: {
scales: {
xAxes: [{
display: true,
stacked: barStacked,
displayStackLabel: true
}],
yAxes: [{
display: true,
stacked: barStacked
}],
}
}
});
Feature Proposal
When I use stacked groups, I want the possibility to display stack label if correct option is selected.
Suggestions of options:
Feature Use Case
I have found a stack-overflow with exactly the same feature wanted :
https://stackoverflow.com/questions/48643408/chart-js-grouped-sub-labels