-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Axis labels could be applied in the hovering popup #3317
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
Changes from 5 commits
61f61b0
fa82506
7955cba
6230dd5
bcefabb
4ee4fa2
7495533
703eaaf
b73403a
fd8cb47
202c210
61ca8ce
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -593,6 +593,15 @@ module.exports = { | |
'*%H~%M~%S.%2f* would display *09~15~23.46*' | ||
].join(' ') | ||
}, | ||
hovertitle: { | ||
valType: 'boolean', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's not what I had in mind. I was thinking of making There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds like those |
||
dflt: false, | ||
role: 'info', | ||
editType: 'none', | ||
description: [ | ||
'Enable axis title(s) to be displayed in the hovering popup' | ||
].join(' ') | ||
}, | ||
// lines and grids | ||
showline: { | ||
valType: 'boolean', | ||
|
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.
Could we give this a default value? By implementing something like:
Each
handleAxisDefaults
caller would have to pass anotheroptions
key, but this would make the chart editor devs (aka RCE) much happier (as the default value will be automatically filled in the RCE panels) and the logic inFx.hover
simpler.