Azzera filtri
Azzera filtri

Axes in GUI

1 visualizzazione (ultimi 30 giorni)
Ean Soo
Ean Soo il 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

Risposta accettata

Paulo Silva
Paulo Silva il 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 Commento
Ean Soo
Ean Soo il 20 Mar 2011
THank you Paulo

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Line Plots in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by