You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the issue. What is the issue and what did you expect?
ChartsJS
Using vanilla ChartsJS, when you hover over different sections in the stacked bar chart, you can see the individual value.
Angular-ChartsJS
However, in when I use the angular-charts.js I get the stacked tooltip with 3 rows.
Is it possible to "unstack" the tooltip?
Solution: It seems like I found the area that I need to update. Looking at the angular-charts.js code, if I comment out:
Chart.defaults.global.tooltips.mode = 'label';```
it works like it does originally in ChartsJS. So I need to figure out a way to override.
Hope this helps someone if they encounter the same issue!
Please make sure to review and check all of these items:
- [ ] Use latest version of the library
- [ ] Make sure you've included all the dependencies e.g Chart.js, angular, etc.
- [ ] Include a repro case, see below.
### Step to reproduce
**Ensure you add a link to a plunker, jsbin, or equivalent. Issues without repro steps may be closed immediately.**
Here is a [jsbin template](https://jsbin.com/rukiyis/edit?html,js,output) for convenience.
The text was updated successfully, but these errors were encountered:
Overview
Describe the issue. What is the issue and what did you expect?
ChartsJS
Using vanilla ChartsJS, when you hover over different sections in the stacked bar chart, you can see the individual value.
Angular-ChartsJS
However, in when I use the angular-charts.js I get the stacked tooltip with 3 rows.
Is it possible to "unstack" the tooltip?
Solution: It seems like I found the area that I need to update. Looking at the angular-charts.js code, if I comment out:
The text was updated successfully, but these errors were encountered: