Range limits with plot background color

Hello Forum, I am trying to set the plot background of a series of plots to be white and for y-axis values above 60 grey. Is there a way to do this? I am trying to highlight values above a certain criteria. Other suggestions are welcome. Thanks.

 Respuesta aceptada

Image Analyst
Image Analyst el 5 de Feb. de 2013

0 votos

Maybe use the rectangle() or patch() function to lay down a gray rectangle in the appropriate place in the plot. Be sure to set "hold on" after that and before you plot your actual data.

Más respuestas (1)

Shashank Prasanna
Shashank Prasanna el 5 de Feb. de 2013
clf
plot(rand(10,1),'-o')
yUp = 0.7;
x=get(gca,'XLim');
y=get(gca,'YLim');
patch('XData',[x fliplr(x)],'YData',[yUp yUp y(2) y(2)],'FaceColor','r','FaceAlpha',0.3)

2 comentarios

Stan Kruger
Stan Kruger el 23 de Oct. de 2015
Editada: Stan Kruger el 23 de Oct. de 2015
Works great, thanks for clear answer!
Inesteroide
Inesteroide el 23 de Oct. de 2018
Can you please share the code?

Iniciar sesión para comentar.

Categorías

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

Productos

Etiquetas

Preguntada:

el 5 de Feb. de 2013

Comentada:

el 23 de Oct. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by