Resize the esfit GUI?

General forum for EasySpin: questions, how to's, etc.
Post Reply
zacmathe
Newbie
Posts: 1
Joined: Thu Apr 09, 2020 10:39 am

Resize the esfit GUI?

Post 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.
katarkon
Local Expert
Posts: 186
Joined: Mon Jan 12, 2015 4:01 am

Re: Resize the esfit GUI?

Post 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.
Post Reply