Re: [Scilab-users] Cropped labels after image export

2015-01-28 Thread Calixte Denizet
Hi Sophie, You should set the fontsize for axes ticks before to set the labels: x=1:100; y=sin(x); figure; g = _gcf_(); axh = g.children; axh.font_size = 6; _plot_(x,y) _xlabel_('Blablabla1','fontsize',6); _ylabel_('Blablabla2','fontsize',6); g.children.children(1).children.thickness = 2;

[Scilab-users] Cropped labels after image export

2015-01-28 Thread Sophie von Borstel
Hi smart people; I am using Scilab 5.5.0 for getting some beautiful graphics. Unfortunately I have a problem with exporting figures. After changing axis font size the labels are out of view. See my code below. If I change the window size by hand I can find my labels again. Is there