Keeping xlabels but not xticks
2 次查看(过去 30 天)
显示 更早的评论
Hi there,
See image: I would like to keep the xlabels (M1,M2,M3,M4,All) whilst deleting the xticks. How do I do this?
Thanks

0 个评论
回答(1 个)
Adam
2017-3-9
hAxes.XAxis.TickLength = [0 0];
where hAxes is your axes handle. This assumes you are using a sufficiently recent version of Matlab (R2015b or later)
2 个评论
Adam
2017-3-9
figure; hAxes = gca;
plot( hAxes, rand( 1, 100 ) )
hAxes.XAxis.TickLength = [0 0];
seems to work fine in R2016a. I don't have R2017, but I don't see why it shouldn't work there also.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Axis Labels 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!