// In the demo of contourf, some black points are drawn near the X-axis and Y-axis intersection.
// often use in old scripts
// should not display black dots on the edges of the axes
-plot2d([0;1],[0;1],0,"121"," ",[0, 0, 1, 1],[1,10,1,10]);
+plot2d([0;1],[0;1],0,strf="121",leg=" ",rect=[0, 0, 1, 1],nax=[1,10,1,10]);
// often use in old scripts
// should not display black dots on the edges of the axes
-plot2d([0;1],[0;1],0,"121"," ",[0, 0, 1, 1],[1,10,1,10]);
+plot2d([0;1],[0;1],0,strf="121",leg=" ",rect=[0, 0, 1, 1],nax=[1,10,1,10]);
x1=[sin(x);100*sin(x)];
y1=[cos(x);100*cos(x)];
y1=y1+20*ones(y1);
-// No clip
-plot2d([-100,500],[-100,600],[-1,-1],"022");
+// No clip
+plot2d([-100,500],[-100,600],[-1,-1],strf="022");
xsegs(10*x1+200*ones(x1),10*y1+200*ones(y1));
-// rectangle clipping zone
-clf(); plot2d([-100,500],[-100,600],[-1,-1],"022")
+// rectangle clipping zone
+clf(); plot2d([-100,500],[-100,600],[-1,-1],strf="022")
xrect(clipBox(1), clipBox(2), clipBox(3), clipBox(4));
axes = gca();
axes.clip_box = clipBox;
y1=[cos(x);100*cos(x)];
y1=y1+20*ones(y1);
// No clip
-plot2d([-100,500],[-100,600],[-1,-1],"022");
+plot2d([-100,500],[-100,600],[-1,-1],strf="022");
xsegs(10*x1+200*ones(x1),10*y1+200*ones(y1));
// rectangle clipping zone
-clf(); plot2d([-100,500],[-100,600],[-1,-1],"022")
+clf(); plot2d([-100,500],[-100,600],[-1,-1],strf="022")
xrect(clipBox(1), clipBox(2), clipBox(3), clipBox(4));
axes = gca();
axes.clip_box = clipBox;
// <-- Short Description -->
// some colors are not present on pie chart
// should draw a white rectangle (draw a yellow one in Scilab 4).
-plot2d(0,0,[0],'032','leg',[-1.5,-1.5 ,1.5,1.5]);
+plot2d(0,0,[0],strf='032',leg='leg',rect=[-1.5,-1.5 ,1.5,1.5]);
a=gca(); t=a.title;
t.text="pie chart"; t.font_size=3;
a.clip_state = 'clipgrf';
// some colors are not present on pie chart
// should draw a white rectangle (draw a yellow one in Scilab 4).
-plot2d(0,0,[0],'032','leg',[-1.5,-1.5 ,1.5,1.5]);
+plot2d(0,0,[0],strf='032',leg='leg',rect=[-1.5,-1.5 ,1.5,1.5]);
a=gca(); t=a.title;
t.text="pie chart"; t.font_size=3;
a.clip_state = 'clipgrf';
//
// <-- Short Description -->
// set or get 'format_n' property from an axes crash scilab.
-plot2d(1:10,1:10,1,"020")
+plot2d(1:10,1:10,1,strf="020")
drawaxis(x=2:7,y=4,dir='u',tics='v')
e=gce();
e.format_n
// set or get 'format_n' property from an axes crash scilab.
-plot2d(1:10,1:10,1,"020")
+plot2d(1:10,1:10,1,strf="020")
drawaxis(x=2:7,y=4,dir='u',tics='v')
e=gce();
e.format_n