How does one disable the menu that appears when one hovers on a plot?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1175953/image.png)
How do we remove this thing?
I want nothing to appear / disappear when I am hovering on my plot if possible.
0 commentaires
Réponses (1)
Benjamin Kraus
le 1 Nov 2022
You can set the Toolbar property on the axes when you create it.
ax = axes;
ax.Toolbar = [];
set(groot,'DefaultAxesToolbarVisible',false);
2 commentaires
FCKOU
le 21 Mar 2023
does not work. Executed the command, figures still appear after I hover over them.
Voir également
Catégories
En savoir plus sur Graphics Object Properties dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!