Different grid lines color in MATLAB

145 visualizaciones (últimos 30 días)
Denis Perotto
Denis Perotto el 1 de Jul. de 2019
Comentada: Denis Perotto el 1 de Jul. de 2019
Is it possible to change color of every single grid line? Not only for all X or Y lines.
I only know it is possible to change any label on axis like this:
ax = gca;
ax.YTickLabel{2} = '\color{green}T_{S}';

Respuestas (1)

Jon
Jon el 1 de Jul. de 2019
The grid is a property of the current axis. After you draw your figure, and add the grid, you can set the GridColor property of the current axis. Here's a little example. Note RGB colors are normalized values in range of 0 to 1.
% make up some data to plot
x = linspace(0,100);
y = x.^2 + 3;
% plot the data and add the grid
plot(x,y)
grid
% change the grid color, gca means get current axis, the colors are RGB values
set(gca,'GridColor',[0.1 0.2 0.9]) % a bluish color
  9 comentarios
Adam Danz
Adam Danz el 1 de Jul. de 2019
Editada: Adam Danz el 1 de Jul. de 2019
xline & yline are great solutions for r2018b or later and those lines will extend if the axis limits are changed after they are drawn.
If you're plotting lines manually (as Jonathan proposed), the lines will not extend if the axis limits are increased which is why it's good to either set the desired axis limits prior to drawing those lines or make sure the line extend to the desired limits.
Denis Perotto
Denis Perotto el 1 de Jul. de 2019
Okay, so it seems I have to create a custom grid of lines using 'yline' after all.

Iniciar sesión para comentar.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by