Is there a way to read the y-axis value when the mouse is hovered over finplot? #331
-
Thank you for making such a great program. Is there a way to read the y-axis value when the mouse is hovered over finplot? (ex : 540) |
Beta Was this translation helpful? Give feedback.
Answered by
highfestiva
May 22, 2022
Replies: 1 comment 4 replies
-
Sure. def on_hover(x, y):
print('hovering', x, y)
fplt.set_time_inspector(on_hover, ax=ax, when='hover') |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
big100
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sure.