plot and set y color

I'm trying to plot and set the y color in the same time but it doesnt work
plot(handles.Axes1,x,y,'Color','r','YColor','r')
i also tried
plot(handles.Axes1,x,y,'Color','r')
set(gca,'ycolor','r')
but didnt work... Thank you

3 comentarios

Vincent I
Vincent I el 11 de Jul. de 2012
Editada: Vincent I el 11 de Jul. de 2012
i was able to color the y axes
set(hObject,'CurrentAxes',handles.Axes1);
hold(handles.Axes1,'on');
plot(handles.Axes1,x,y,'Color','r')
cah = get(hObject,'CurrentAxes');
set(cah,'YColor','r')
However is there a easier way so I can cut on the code?
John Petersen
John Petersen el 11 de Jul. de 2012
Did you try
set(handles.Axes1,'YColor','r')
Vincent I
Vincent I el 11 de Jul. de 2012
yes, i remember trying and i think it didnt work... however it does work thank you

Iniciar sesión para comentar.

Respuestas (1)

Luffy
Luffy el 11 de Jul. de 2012

0 votos

Try this,
figure;
plot(sind(1:360));
set(gca,'YColor','r');

Categorías

Más información sobre Graphics Performance en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 11 de Jul. de 2012

Community Treasure Hunt

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

Start Hunting!

Translated by