-
Notifications
You must be signed in to change notification settings - Fork 120
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
feat: hide tooltip when hover over lines #339
Conversation
This commit add a new prop for the line annotation to disable the tooltip when hovering over the line fix elastic#324
Codecov Report
@@ Coverage Diff @@
## master #339 +/- ##
==========================================
+ Coverage 98.51% 98.51% +<.01%
==========================================
Files 38 38
Lines 2691 2692 +1
Branches 635 622 -13
==========================================
+ Hits 2651 2652 +1
Misses 37 37
Partials 3 3
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Testing locally, looks good!
🎉 This PR is included in version 10.1.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
# [10.1.0](elastic/elastic-charts@v10.0.1...v10.1.0) (2019-08-22) ### Features * hide tooltip when over line annotation ([opensearch-project#339](elastic/elastic-charts#339)) ([f6db65f](elastic/elastic-charts@f6db65f)), closes [opensearch-project#324](elastic/elastic-charts#324)
Summary
This PR adds the possibility to hide the tooltip when hovering over a line annotation.
It adds a new property for the
<LineAnnotation />
component calledhideLinesTooltips
.NOTE
this works correctly with horizontal charts (0 or 180 degrees) but doesn't hide the tooltip for 90,-90 degree rotated charts. That because there is an issue on detecting the mouse hover for the marker in those cases.
I'd like to merge this anyway so TSVB can have it in for 7.4
fix #324
Checklist
Use
strikethroughsto remove checklist items you don't feel are applicable to this PR.[ ] Any consumer-facing exports were added tosrc/index.ts
(and stories only import from../src
except for test data & storybook)