Zoom feature using mouse in app designer stopped working

13 views (last 30 days)
Hi,
I have an app written in App Designer, and recently the Zoom tool stopped working. When I try to Zoom in to a specific section of the plot, or to a sepcific horizontal or vertical section, MATLAB draws the Zoom area but doesn't Zoom, and the drawn Zoom region indicator remains on the plot (see image below for a visual).
I recently switched from 2021a to 2022b, not sure if that could be the reason. In the code I have the following lines for the plot:
app.UIAxes1.Toolbar.Visible = 'off';
app.UIAxes1.Toolbar.Visible = 'on';
These two lines are one right after the other, because without them sometime the toolbar would disappear after the plot shows up. This helps bring the toolbar back, and until recently I haven't had the problem with broken Zoom so I don't think this is a problem.
Please let me know if anyone experienced something similar or if you have ideas how to try and fix it.

Answers (1)

Nipun
Nipun on 22 Sep 2023
Hi Vitek,
I understand that the zoom tool in the toolbar is not working for MATLAB app designer.
I tried creating a sine plot in MATLAB App Designer R2023a and the zoom tool is working as expected. I recommend updating to the latest version. Additionally, I suggest creating a simple ML app plot to test out the zoom feature. This should solve the problem. You may also turn on pan and zoom for the axes using the code below (R2017-2018)
pan(app.UIAxes1,'on'); % or 'off'
zoom(app.UIAxes1,'on'); % or 'off'
Starting R2018b, these options were enabled by default. Hope this helps.
Regards,
Nipun
  1 Comment
Vitek Stepien
Vitek Stepien on 1 Dec 2023
Hi Nipun,
Not exactly, the tool works to begein with but freezes every now and then with too much data on the plot, and behaves like I described above. It looks like it's 'overloaded' and doesn't function properly anymore

Sign in to comment.

Categories

Find more on Visual Exploration in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!