Page 1 of 1

Resize the esfit GUI?

Posted: Thu Apr 09, 2020 10:51 am
by zacmathe
Is it possible to change the size of the esfit GUI? I would like to increase the size of the window, and more importantly, the fonts within the window. On my monitor, the numbers in the parameters table appear only 1 mm tall and are very pixelated.

I have tried dragging corners or using macOS commands to resize the window, but they do not work. (These things do work for MATLAB Figure windows.)

I apologize if this is a basic question; I am new to MATLAB. I am running easyspin 5.2.28 on macOS 10.14.6.

Re: Resize the esfit GUI?

Posted: Fri Apr 10, 2020 2:52 am
by katarkon
Generally, You have to get the appropriate object handler and change its properties. Here the examlpe how to change the properties of the lines.

Code: Select all

...
esfit('exchange',y,Sys,Vary,Exp,Opt,FitOpt);
h = findobj(gcf,'Type','line')
set(h(4),'Marker','none');
set(h(2),'LineStyle',':');
The properties of the text objects should be changed in the same manner.
Good luck.