generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request]: Show number of request on hover #8
Labels
bug
Something isn't working
Comments
Oh, weird. for me it shows only the number of non 2XX requests: This is my
|
I'm wondering. Could it be that numbers greater than 100 are not shown? |
maciek-szn
added a commit
to maciek-szn/requests-graph-pulse
that referenced
this issue
Aug 10, 2024
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 paulo-hortelan#8
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What happened?
I just deployed this awesome package to production, and it is great! Thanks for the amazing work.
I would like to request if it would be possible to show the number of requests when hovering the mouse. Currently only the max value is shown:
Other native charts like the Queues chart or the memory usage chart do display the number when hovering:
How to reproduce the bug
.
Package Version
1.1
PHP Version
8.3
Laravel Version
11
Which operating systems does with happen with?
No response
Notes
No response
The text was updated successfully, but these errors were encountered: