how to use the "tight" function for just one axis
Ältere Kommentare anzeigen
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
Akzeptierte Antwort
Weitere Antworten (3)
Jaromir
am 16 Mär. 2018
There's an out-of-the-box command for what you want:
set(handleToAxes, 'XLimSpec', 'Tight');
or
set(handleToAxes, 'YLimSpec', 'Tight');
3 Kommentare
SOFIA DIE PANCORBO
am 19 Mai 2020
I found it didn't work with "handleToAxes" but it did with "gca" instead. Thank you! :)
qilin guo
am 26 Apr. 2022
Undocumented properties! But useful. How many undocumented properties are there?
dpb
am 26 Apr. 2022
Undocumented...
ADSW121365
am 31 Aug. 2022
Drew Chap
am 25 Mai 2023
As of R2021a, the best method to do this is:
ax = gca()
ax.XLimitMethod = 'tight'
Kategorien
Mehr zu Graphics Object Properties finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!