[FEATURE] Display stack label for Stacked groups
See original GitHub issueFeature 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
Issue Analytics
- State:
- Created 5 years ago
- Reactions:13
- Comments:9
Top Results From Across the Web
A Complete Guide to Stacked Bar Charts | Tutorial by Chartio
Stacked bar charts extend the standard bar chart by dividing each bar into multiple subcategories. Learn how to best use this chart type...
Read more >Stacked Groups | FlexChart | ComponentOne - GrapeCity
Stacked groups allow you to compare items across categories in a group. In addition, you can visualize relative difference between items in each...
Read more >Display label of stacked graphs on the bar rather - ServiceNow
My client is asking to setup a stacked bar chart and to display the labels for the different stacks. The issue is that...
Read more >How to add total labels to stacked column chart in Excel?
Create a stacked column chart with total labels in Excel · 1. Supposing you have prepared your source data as below screenshot shown....
Read more >Stacked Bar Chart with Segment Labels - Graphically Speaking
Stacked Bar Chart with Segment Labels · Summarize the data by category and group variable using the MEANS procedure. · Use a data...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is actually resolved using datalabels plugin, and labels. Use labels as regular maybe adjusting vertical height to make room for datalabels. Also adjust datalabels vertical height and offset then use formatter
+1 Would like this