Stop user from dragging off data in uiaxes, set 'Restore View' Properly

5 vues (au cours des 30 derniers jours)
Kylie MacFarquharson
Kylie MacFarquharson le 11 Juil 2019
I'm trying to transition over to app designer but am having trouble with uiaxes objects. When I use imagesc with a uiaxes object, the automatic limits are badly choses, leaving data off screen in one direction and whitespace on the others. Standard (axes) behavior has the limits automatically set properly and won't let the user drag beyond where there is data.
How to I acheive this in uiaxes. Is there a workaround?
Minimum broken example:
C = magic(3);
ax = uiaxes();
im = imagesc(ax,C);
You can drag beyond the limits!

Réponses (1)

Maadhav Akula
Maadhav Akula le 17 Juil 2019
I understand from your question that you either want to autoscale the axes limits (or) want to disable the interactivity of the UIAxes.
For autoscaling:
C = magic(3);
ax = app.UIAxes;
axis (ax,'tight')
im = imagesc(ax,C);
For disabling interactivity of the UIAxes component:
disableDefaultInteractivity(ax)
You can also hide the toolbar so that the user cannot zoom in/out:
ax.Toolbar.Visible = 'off';

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by