Can i make Title and x and y label Bold
573 views (last 30 days)
Show older comments
Can i make Title and x and y label of a plot Bold and to increasr their font size
0 Comments
Accepted Answer
Wayne King
on 15 Nov 2011
plot(randn(100,1));
title('Test','fontweight','bold','fontsize',16);
xlabel('Time','fontweight','bold','fontsize',16);
More Answers (2)
lalit kaushik
on 16 May 2019
you can use the following
set(gca,'FontWeight','bold'). It works for me
0 Comments
See Also
Categories
Find more on Title in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!