Can i make Title and x and y label Bold
568 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
moonman
am 15 Nov. 2011
Beantwortet: lalit kaushik
am 16 Mai 2019
Can i make Title and x and y label of a plot Bold and to increasr their font size
0 Kommentare
Akzeptierte Antwort
Wayne King
am 15 Nov. 2011
plot(randn(100,1));
title('Test','fontweight','bold','fontsize',16);
xlabel('Time','fontweight','bold','fontsize',16);
Weitere Antworten (2)
lalit kaushik
am 16 Mai 2019
you can use the following
set(gca,'FontWeight','bold'). It works for me
0 Kommentare
Siehe auch
Kategorien
Mehr zu Title finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!