Effacer les filtres
Effacer les filtres

Axes in GUI

1 vue (au cours des 30 derniers jours)
Ean Soo
Ean Soo le 20 Mar 2011
Hie guys, can i know how do we change the axes scale color? Like if we change at the properties table, it only appear when we run the GUI. But when we plot out the graph, the color change back to black color. So, can i know how to change it?
Regards, Ean

Réponse acceptée

Paulo Silva
Paulo Silva le 20 Mar 2011
%after plotting set the colors
set(gca,'XColor',[1 0 0]) %x scale in red
set(gca,'YColor',[0 1 0]) %y scale in green
You can also keep the scale colors by doing
hold all
before the first plot, be aware that this will also do other things to your axes that you might not want.
If you want to remove the scale on top and on the right
box off
  1 commentaire
Ean Soo
Ean Soo le 20 Mar 2011
THank you Paulo

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by