Re: [Scilab-users] Problem with ticks

2022-08-04 Thread Dang Ngoc Chan, Christophe
Hello, You have to keep consistant the size of the locations and labels. Try : foo = [0:10:200]'; ca.x_ticks=tlist(ca.x_ticks(1), foo, string(foo)) Kind regards De : users De la part de Jens Simon Strom Envoyé : jeudi 28 juillet 2022 23:07 General ca.x_ticks.locations=[0:20:200]';

[Scilab-users] Problem with ticks

2022-08-03 Thread Jens Simon Strom
Hi, The code below works in version 6.1.0. But after replacing the ticks configuration by the commented one it fails. What is wrong there? Regards Jens T=15:200; P=9600../T; xdel() plot(T,P) ca=gca(); ca.grid=[1 1]; xtitle('$P=\frac{9600}{T}$'); t=ca.title; t.font_size=5;