You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many modern charting/plotting UIs allow users to click on the axis (vertical/horizontal) and:
drag up/down
for vertical axis
left/right
for horizontal axis
I'd love for the plot to allow for an api, much like the existing allow_drag() api to enable axis zooming by dragging.
This should probably named in a descriptive way, something like: allow_axis_zoom_drag()
The text was updated successfully, but these errors were encountered:
Just updating that I have a PoC that kind of works, more or less. trying to iron out some issues there and will submit as a draft for review of the overall approach
I just checked how pyqtgraph does this - you can left click and drag to pan, and right click and drag to zoom, both on the axis (affects just that axis) as well as on the actual plot area (affects both axes).
Many modern charting/plotting UIs allow users to click on the axis (vertical/horizontal) and:
I'd love for the plot to allow for an api, much like the existing
allow_drag()
api to enable axis zooming by dragging.This should probably named in a descriptive way, something like:
allow_axis_zoom_drag()
The text was updated successfully, but these errors were encountered: