How to set the grid of the right yyaxis?
Mostrar comentarios más antiguos
I have a figure that has 2 yyaxis, and I want the grid shown on the right yyaxis. But the command grid on is only effective on the left yyaxis.
Sure I can just plot the lines of the grids, but the lines are on the top of the other lines or patches. The good thing of the grid is that they are always on the bottom layer, while the lines user plotted are on the top layer.
x1=[200, 300, 250, 520, 340];
x2=[0.3, 0.2, 0.12, 0.4, 0.22];
figure;
yyaxis left
bar(x1);
yyaxis right
plot(x2);
grid on

The grid is on the left yyaxis, while I want it to be of the right yyaxis. What should I do?
2 comentarios
KALYAN ACHARJYA
el 1 de Dic. de 2020
Editada: KALYAN ACHARJYA
el 1 de Dic. de 2020
Answer from MATLAB "Grid lines correspond with the tick mark locations along the left y-axis". Option plotyy
Albert Bing
el 1 de Dic. de 2020
Respuesta aceptada
Más respuestas (1)
Workaround
Set the vertical grid lines
ax = gca();
ax.XGrid = 'on';
set the horizontal grid lines using yline after setting the ytick and ylim. If the ylim or yticks change, the horizontal reference lines will not update. You could add a listener to fix that. Also, the horizonal lines will always be on top. To put them on the bottom see this answer.
yyaxis right
ylim([-1,3])
ax.YTick = -1:.5:3;
yl = arrayfun(@(y)yline(ax, y,'LineStyle',ax.GridLineStyle,'Color',ax.GridColor,'Alpha',ax.GridAlpha),ax.YTick);
7 comentarios
Albert Bing
el 1 de Dic. de 2020
Editada: Albert Bing
el 1 de Dic. de 2020
Albert Bing
el 1 de Dic. de 2020
Adam Danz
el 1 de Dic. de 2020
> The Xgrid belongs to the right y-axis.
No, the xgrid belongs to the x-axis.
> The answer of putting lines on the bottom seems not work. The last line Sxh.Edge.Layer = 'back' throws an error.
The solution in that answer worked for me and of the OP in that question. You might be applying it incorrectly. I don't see what you did and I don't see that error you received so I can't help you there.
> I ran the example you gave, and the result was a little wired. The YGrid is on the bottom but the XGrid is still on the top.
The image you shared shows the exact opposite. The XGrid is under the bars and the YGrid (yline) is on top of the bars which is expected unless you set the lines to the bottom layer correctly.
Adam Danz
el 1 de Dic. de 2020
You're not applying the solution correctly.
The variable "xh" in my solution refers to the xline objects (in your case, it will be the yline).
Albert Bing
el 1 de Dic. de 2020
Albert Bing
el 1 de Dic. de 2020
You can use plot() or line() instead of yline(). The main difference is that yline will always extend to the axis edges but if xlim is changed then lines produced by plot() or line() may no longer extend to the axis edges. You could over-estimate the edges to mitigate that problem.
Example:
yyaxis right
ax = gca();
ax.XGrid = 'on';
ylim([-1,3])
xl = xlim();
xlExtended = xl + [-range(xl), range(xl)]; % Optional
ax.YTick = -1:.5:3;
hold(ax, 'on')
yl = plot(ax, xlExtended,[ax.YTick',ax.YTick'] ,'LineStyle',ax.GridLineStyle,'Color',[ax.GridColor, ax.GridAlpha],'Marker','none');
xlim(xl)
Categorías
Más información sobre Grid Lines, Tick Values, and Labels en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




