Different grid lines color in MATLAB

148 次查看(过去 30 天)
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}';

回答(1 个)

Jon
Jon 2019-7-1
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 个评论
Adam Danz
Adam Danz 2019-7-1
编辑:Adam Danz 2019-7-1
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 2019-7-1
Okay, so it seems I have to create a custom grid of lines using 'yline' after all.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by