How can I select the "Neue Helvetica" instead of the default "Helvetica" as "fontname" ?
20 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Abderrahim. B
le 29 Août 2022
Modifié(e) : Abderrahim. B
le 29 Août 2022
Hi!
Use set:
get(gca,'fontname') ;
set(gca, 'FontName', "Neue Helvetica") ;
get(gca, 'FontName')
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Annotations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!