Can i make Title and x and y label Bold
조회 수: 570 (최근 30일)
이전 댓글 표시
Can i make Title and x and y label of a plot Bold and to increasr their font size
댓글 수: 0
채택된 답변
Wayne King
2011년 11월 15일
plot(randn(100,1));
title('Test','fontweight','bold','fontsize',16);
xlabel('Time','fontweight','bold','fontsize',16);
추가 답변 (2개)
lalit kaushik
2019년 5월 16일
you can use the following
set(gca,'FontWeight','bold'). It works for me
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Title에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!