How can I select the "Neue Helvetica" instead of the default "Helvetica" as "fontname" ?

7 views (last 30 days)
How can I select the "Neue Helvetica" instead of the default "Helvetica" as "fontname" ?
Currently I have the following:
>> get(gca,'fontname')
ans =
'Helvetica'

Accepted Answer

Abderrahim. B
Abderrahim. B on 29 Aug 2022
Edited: Abderrahim. B on 29 Aug 2022
Hi!
Use set:
get(gca,'fontname') ;
set(gca, 'FontName', "Neue Helvetica") ;
get(gca, 'FontName')
ans = 'Neue Helvetica'

More Answers (0)

Community Treasure Hunt

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

Start Hunting!