How to position the default interactivity bar?
Afficher commentaires plus anciens
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.
Réponses (1)
Ajay Pattassery
le 21 Fév 2020
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 commentaires
Leon
le 21 Fév 2020
Ajay Pattassery
le 24 Fév 2020
Modifié(e) : Ajay Pattassery
le 24 Fév 2020
I assume you have reason to keep the xticklabels on the top of the graph.
Catégories
En savoir plus sur Graphics Object Properties dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!