Can the font size of gscatter x-axis and y-axis labels be changed?
조회 수: 5 (최근 30일)
이전 댓글 표시
I'm creating several group scatter plots where the a-axis and y-axis labels vary from plot to plot. The parameters xnam and ynam specify the names to use for the x-axis and y-axis labels.
Are the font sizes of these parameters hard coded to specific values? Or can they be varied?
Thank you.
댓글 수: 0
채택된 답변
Star Strider
2017년 5월 16일
You can vary them with the 'FontSize' p[roperty.
Example —
x = rand(1,100);
y = rand(1,100);
figure(1)
scatter(x, y)
xlabel('X Value', 'FontSize',20);
ylabel('Y Value', 'FontSize',30)
grid
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Labels and Annotations에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!