App UIAxes Zoom Control
9 views (last 30 days)
Show older comments
Hi everyone
I'm having troubling controlling the zooming of UIAxes in an app I'm desiging. The app has several buttons that generate different graphs. The way it should work is to make the x and y scale tight around the graphs each time a new graph is produced on the axes. I have been unable to achieve this behaviour, because if a user zooms in on a graph, I have found no good way to reset the zoom to make it tight around the next graph.
Some things I've tried are:
- recreating the graph each time. this worked but it's slow and glitchy when the app is resized
- set(app.UIAxes, 'XLimSpec', 'Tight'); set(app.UIAxes, 'YLimSpec', 'Tight');. - this has no perceivable effect on the user's zoom
- zoom(app.UIAxes, 'RESET'); - this didn't compile, even though zoom(app.UIAxes, 'ON'), did compile
I'd be grateful if someone has the solution to this.
0 Comments
Answers (1)
Subhamoy Saha
on 14 Aug 2020
As far I have understand, you are facing problem is the new plot appears in the axes limits for the previous zoom state.
You can try adding the following line after your plot command.
axis(app.UIAxes, 'tight')
This will make the axes tight about new set of data you are plotting each time.
1 Comment
Rik
on 10 Nov 2021
Regarding your flag ("Fix the size during zooming"): flags are not personal bookmarks, but are meant to attract the attention of site admins.
See Also
Categories
Find more on Data Exploration in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!