How to position the default interactivity bar?
古いコメントを表示
I'm referring to the toolbar with things like Zoom in, Zoom out, Home, etc. Right now, its default position is to cover my xticklabel. Is there a way I can specify its position?
Thanks.
回答 (2 件)
Ajay Pattassery
2020 年 2 月 21 日
I am not sure of moving the figure toolbar, but you could remove it from the figure using the following command
ax = gca;
ax.Toolbar.Visible = 'off'; % Turns off the axes toolbar
2 件のコメント
Leon
2020 年 2 月 21 日
Ajay Pattassery
2020 年 2 月 24 日
編集済み: Ajay Pattassery
2020 年 2 月 24 日
I assume you have reason to keep the xticklabels on the top of the graph.
Jessa
2026 年 5 月 15 日 15:29
For any users looking for a solution to a similar problem in the future -- starting in MATLAB R2026a, there's a new `ToolbarLocation` property on the axes that gives you some control over where the axes toolbar is positioned:
ax.ToolbarLocation = "outside"; % above the axes (default)
ax.ToolbarLocation = "inside"; % inside the axes, top-right corner
You could try moving it "inside" in this case.
カテゴリ
ヘルプ センター および File Exchange で Axis Labels についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!