When zooming in the axes of the app designer, my text will go out of the axes, how to aviod this?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
rumin diao
am 1 Jun. 2022
Kommentiert: Voss
am 2 Jun. 2022
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1018410/image.png)
like this. The rectangle represents the axes and the numbers represent text i added, when i zoom in the rectangle, those text will go out of the area instead of disappearing, why? What should i do to avoid this?
0 Kommentare
Akzeptierte Antwort
Benjamin Kraus
am 1 Jun. 2022
Bearbeitet: Benjamin Kraus
am 1 Jun. 2022
There is a Clipping property on text objects that is off by default. If you set the Clipping property to 'on' you will get the behavior your are expecting.
Default Behavior
ax = axes;
t = text([0.1 0.2 0.3], [0.1 0.2 0.3], ["one", "two", "three"]);
xlim([0.21 1])
With Clipping 'on'
figure
ax = axes;
t = text([0.1 0.2 0.3], [0.1 0.2 0.3], ["one", "two", "three"],'Clipping','on');
xlim([0.21 1])
4 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Call Web Services from MATLAB Using HTTP finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!