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 another method for doing this?
I just don’t want to change each graphic by hand.
 
Thanks in advance for your help! 
Sophie
 
 
 
x=1:100;
y=sin(x);
 
figure;
g = gcf();
plot(x,y)
 
xlabel('Blablabla1','fontsize',6);
ylabel('Blablabla2','fontsize',6);
 
g.children.children(1).children.thickness = 2; //Plot Thickness
 
g.children.children.children.thickness = 2;
axh = g.children;
axh.font_size = 6;
 
xs2eps(g, 'Blub.eps', ['landscape']);
 
_______________________________________________
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users

Reply via email to