-
Notifications
You must be signed in to change notification settings - Fork 19.7k
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
fix: series cursor setting not working on label #15703
base: next
Are you sure you want to change the base?
Conversation
Thanks for your contribution! |
src/chart/bar/BarView.ts
Outdated
@@ -996,6 +996,8 @@ function updateStyle( | |||
); | |||
} | |||
|
|||
cursorStyle && label.attr('cursor', cursorStyle); |
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.
Many other series may have similar problems. Please consider setting cursor information to labels in LabelManager. You may refer to updateBlend for reference.
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.
Now setting cursor in processLabelsOverall
of LabelManager 😂
101cbd5
to
4552592
Compare
I have found the cursor setting also not working on line series and custom series when I wanted to only have |
Brief Information
This pull request is in the type of:
What does this PR do?
Fixed issues
#15631
Details
Before: What was the problem?
see #15631
After: How is it fixed in this PR?
sync
cursor
option to labelMisc
Related test cases or examples to use the new APIs
NA.
Others
Merging options
Other information