Hi,<br><br>I have a problem when I execute this routine under Scilab v5.3 beta 4 under windows XP v3 (screen resolution 1280x800).  A part of the plot is missing. <br> <br>Someone could tell me if this is already an "official bug"?<br>
<br>Does this bug will be fixed in the final version of Scilab v5.3?<br><br>Thank you.<br><br><br>CODE : <br><br>clear; close; clc;<br><br>t = linspace(0,61.443281,393267);<br><br>Z = 750*sin(2.*%pi.*0.25.*t);<br><br>drawlater()<br>
<br>  plot2d(t,Z,style=color('red')); <br><br> a=gca();who<br> a.x_label.font_size = 2;<br> a.y_label.font_size = 2;<br> a.title.font_size   = 4;<br> a.font_size         = 2;<br><br> a.sub_tics          = [5,4];<br>
 a.labels_font_color = 1;<br> id = color(200,200,200);<br> a.grid               = [id,id];<br> a.parent.figure_size = [800,600];<br> a.parent.figure_position = [0,0];<br> a.box = "on";<br><br> a.x_label.text="Time [s]";<br>
 a.x_label.font_style = 6;<br> a.x_label.font_size  = 4;<br> a.y_label.text="Amplitude";<br> a.y_label.font_style = 6;<br> a.y_label.font_size  = 4;<br><br>drawnow()<br><br><br>