Can i make Title and x and y label Bold

Can i make Title and x and y label of a plot Bold and to increasr their font size

 Accepted Answer

plot(randn(100,1));
title('Test','fontweight','bold','fontsize',16);
xlabel('Time','fontweight','bold','fontsize',16);

More Answers (2)

you can use the following
set(gca,'FontWeight','bold'). It works for me
Does not really work under Ubuntu ;(

Tags

Asked:

on 15 Nov 2011

Answered:

on 16 May 2019

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!