How can I select the "Neue Helvetica" instead of the default "Helvetica" as "fontname" ?
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Abderrahim. B
il 29 Ago 2022
Modificato: Abderrahim. B
il 29 Ago 2022
Hi!
Use set:
get(gca,'fontname') ;
set(gca, 'FontName', "Neue Helvetica") ;
get(gca, 'FontName')
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!