How to disable dynamic menu items from axes
3 ビュー (過去 30 日間)
古いコメントを表示
This question is difficult to look up the answer to because I don't know the name of this visual feature of an axes. It pops up dynamically as the cursor passes over it. Sometimes it interferes with nearby uicontrols etc., and I'd like to be able to disable it sometimes.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/556212/image.png)
0 件のコメント
採用された回答
Srivardhan Gadila
2021 年 3 月 22 日
Refer to the documentation of Control Chart Interactivity and set the Visible property of the AxesToolbar object to 'off'
ax = gca;
ax.Toolbar.Visible = 'off';
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!