How can I select the "Neue Helvetica" instead of the default "Helvetica" as "fontname" ?
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sim
el 29 de Ag. de 2022
Comentada: Abderrahim. B
el 29 de Ag. de 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 comentarios
Respuesta aceptada
Abderrahim. B
el 29 de Ag. de 2022
Editada: Abderrahim. B
el 29 de Ag. de 2022
Hi!
Use set:
get(gca,'fontname') ;
set(gca, 'FontName', "Neue Helvetica") ;
get(gca, 'FontName')
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!