how to use the "tight" function for just one axis
Mostra commenti meno recenti
So I origionally had: axis tight But it cut both axes, whereas I just want it to be tight around the x axis but allow the y axis to not be cut. Is there a function for this please? Thanks
Risposta accettata
Più risposte (3)
Jaromir
il 16 Mar 2018
There's an out-of-the-box command for what you want:
set(handleToAxes, 'XLimSpec', 'Tight');
or
set(handleToAxes, 'YLimSpec', 'Tight');
3 Commenti
SOFIA DIE PANCORBO
il 19 Mag 2020
I found it didn't work with "handleToAxes" but it did with "gca" instead. Thank you! :)
qilin guo
il 26 Apr 2022
Undocumented properties! But useful. How many undocumented properties are there?
dpb
il 26 Apr 2022
Undocumented...
ADSW121365
il 31 Ago 2022
Drew Chap
il 25 Mag 2023
As of R2021a, the best method to do this is:
ax = gca()
ax.XLimitMethod = 'tight'
Categorie
Scopri di più su Graphics Object Properties in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!