Is there any option to change the font size of figures in the entire MATLABfile?

2 visualizaciones (últimos 30 días)
Hi all,
I have a MATLAB file with so many figures. Is there any way to insert a line of code at the begging to change the font for all figures?
Currently, I am using a line of code using findall before exporting each figure. Also, is there any code to seperate title font from the rest of fonts in figures?
Thanks

Respuesta aceptada

Jan
Jan el 28 de Mayo de 2021
Editada: Jan el 28 de Mayo de 2021
set(groot, 'DefaultTextFontSize', 20)
A smart solution is to consider this from the beginning:
titleFontSize = 18;
...
title('My title', 'FontSize', titleFontSize);
  1 comentario
Wolfgang McCormack
Wolfgang McCormack el 28 de Mayo de 2021
@Star Strider and @Jan. Thank you both, I picked Jan as I saw his answer before yours Star Strider but you are always a great help. Any similar option to groot for seperating the title and the rest of fonts? How should I set the figure lines to bigger lines? :D I know I should have thought about these from the beggining but well things happen.
One more problem, I don't know where on the MATLAB platform I can find the properties for a figure or Types. Any advice where to find them?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by