How can I select the "Neue Helvetica" instead of the default "Helvetica" as "fontname" ?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sim
am 29 Aug. 2022
Kommentiert: Abderrahim. B
am 29 Aug. 2022
How can I select the "Neue Helvetica" instead of the default "Helvetica" as "fontname" ?
Currently I have the following:
>> get(gca,'fontname')
ans =
'Helvetica'
0 Kommentare
Akzeptierte Antwort
Abderrahim. B
am 29 Aug. 2022
Bearbeitet: Abderrahim. B
am 29 Aug. 2022
Hi!
Use set:
get(gca,'fontname') ;
set(gca, 'FontName', "Neue Helvetica") ;
get(gca, 'FontName')
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Find more on Interactive Control and Callbacks 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!