How can I change the color and font on the second y axis of a subplot?
이전 댓글 표시
I have a Matlab subplot:
subplot(4,2,2); plotyy(x,y,x,z)
xlabel('x','FontSize',8); set(gca,'FontSize',8); legend('y','z','Location','Best');
set(legend,'FontSize',8); title('y and z','FontSize',10);
But the font on the right axis is 10, not 8, and the color is blue. I would to change the color and font. Many thanks for any help!
채택된 답변
추가 답변 (2개)
Mischa Kim
2014년 4월 19일
편집: Mischa Kim
2014년 4월 19일
0 개 추천
SSB, one way would be to use the plot tools. See icon in the lower right corner in the screen shot:

In the plot tools editor you can select the figure objects and change their properties. Once you are done adapting your figure you can choose > File > Generate Code... and learn how to do all those changes programmatically.
댓글 수: 3
SSB
2014년 4월 19일
Mischa Kim
2014년 4월 19일
In the plot browser start by selecting the corresponding Axes (no title) and continue by changing properties as needed.

SSB
2014년 4월 19일
DanielFromIllinois
2023년 2월 1일
0 개 추천
You can also find the YAxis properties for left and right like so:
fh = figure;
x = 1:10;
y = 1:10;
%pltos on the left axis.
plot(x,y)
%plots on the right axis.
yyaxis right
plot(x,y*2)
%The YAxis object is stored under the Axes child of the figure.
%It has a property 'Color' that you can use to set the color to black.
%The line below will set the color to black.
fh.Children.YAxis(2) = 'k';
카테고리
도움말 센터 및 File Exchange에서 Subplots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!