MATLAB : resize figure, axis does not move
3 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I have a figure with 2 x-axis. But when I resize the figure, the second axis (on the top) does not move.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/152219/image.png)
I declare the second axis like this :
ax2 = axes('Position',get(ax1,'Position'),... 'XAxisLocation','top',... 'YAxisLocation','right',... 'Color','none',... 'XColor','k','YColor','none');
set(ax2, 'XLim', get(ax1, 'XLim'),'YLim', get(ax1, 'YLim'));
set(ax2, 'XTick', get(ax1, 'XTick'), 'YTick', get(ax1, 'YTick'));
set(ax2, 'YTick', []);
How can I resolve this problem ?
1 件のコメント
Brendan Hamm
2015 年 7 月 15 日
Can you format the code for your ax2 definition using the '{ } Code' button.
I cannot reproduce your problem, assuming it is the overhang of the second axis which is of issue. Would you mind providing more code for this?
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Lighting, Transparency, and Shading についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!