Clear Filters
Clear Filters

Axes in GUI

1 view (last 30 days)
Ean Soo
Ean Soo on 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

Accepted Answer

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

Sign in to comment.

More Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!