Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When displaying tooltips, they only contain values greater than zero. This is done by filtering: `.filter(item => item.formattedValue > 0)` However, `formattedValue` is a string, and additionally - if I understand correctly - formatted according to the user's local settings. This causes situations where values greater than zero are incorrectly filtered out. Therefore, we should refer to the `raw` parameter: `.filter(item => item.raw> 0)` Closes #8
- Loading branch information