How does one disable the menu that appears when one hovers on a plot?
7 次查看(过去 30 天)
显示 更早的评论
How do we remove this thing?
I want nothing to appear / disappear when I am hovering on my plot if possible.
0 个评论
回答(1 个)
Benjamin Kraus
2022-11-1
You can set the Toolbar property on the axes when you create it.
ax = axes;
ax.Toolbar = [];
set(groot,'DefaultAxesToolbarVisible',false);
2 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Object Properties 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!