Hi
I have a stacked bar chart that I want to have the series labels to be dynamically created on the last "color"
Currently in the attached file, i attached the series label to my "blue" bar. However once inside the callback I can't get to my component to generate a dynamic label.
If i have just 2 colors, i can calculate the label using "value" and "stackedValue" ... but with more than 2 i need to get at my component
So how can I get the label to show total for each color in the row, not just the last color, ie
1st row is 1/4/7
2nd row is 2/5/8
3rd row is 3/6/9
Here is my sample
https://stackblitz.com/edit/angular-vushqc?file=app/app.component.ts
Thanks