-
Notifications
You must be signed in to change notification settings - Fork 12k
Closed
Labels
Description
Feature Proposal
When I use stacked groups, I want the possibility to display stack label if correct option is selected.
Suggestions of options:
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 Use Case
I have found a stack-overflow with exactly the same feature wanted :
https://stackoverflow.com/questions/48643408/chart-js-grouped-sub-labels
KikoLabiano, arrazanza, XterraEngine-dev, jimpriest, jaybhoyar and 10 moreKikoLabiano, Ygryc, arrazanza, FunnyElevator and SarahTrees