xvedi 10 di listati per
terminal, tics,time, title, view
# Terminal(file-device)gestione uscita
set terminal window show terminal set terminal png show terminal set terminal pbm show terminal set terminal gif show terminal set terminal hpdj show terminal set terminal dumb show terminal pause -1
# Tics(axes-tics-label)gestione etichette su graduazione
set xtics ("label x" 1,1) set ytics ("label y" 2,2) set ztics ("label z" 3,3) show tics pause -1 plot x pause -1 set tics out show tics plot x pause -1
set tics in set xtics ("label x" 1,1) set ytics ("label y" 2,2) set ztics ("label z" 3,3) show tics pause -1 splot x pause -1
# Tic(axes-tics-intervallo)gestione passo graduazione
set xtics 1,1,10 set ytics 2,0.5,5 set ztics 3,0.5,10 show tics pause -1 plot x pause -1 splot x pause -1
# Ticscale(axes-tics)gestione scala graduazione
set ticscale show tics plot x pause -1
set ticscale 3 1 show tics plot x pause -1
set ticscale 4 1.5 show tics plot x pause -1
# Ticslevel(axes-tics)gestione livello graduazione
set ticslevel 0.5 show tics plot x pause -1 set ticslevel 1 plot x pause -1 set ticslevel 0.5 show tics plot x pause -1
# Timestamp gestione tempo
set timestamp "%a %b %d %H:%M:%S %Y" 0,0 show timestamp plot sin(x) pause -1
set timestamp "%a %b %d %Y" 2,2 show timestamp plot cos(x) pause -1
# Time(chart) gestione tempo
set time 1,1 show time plot sin(x) pause -1 set notime plot sin(x) pause -1 set time "%a %b %d %H:%M:%S %Y" 3,3 show time plot sin(x),cos(x) pause -1
# Timefmt gestione tempo
set timefmt show timefmt plot x pause -1
# title(chart)gestione titolo per grafico
set title "titolo grafico" 1,1 show title plot x pause -1
# View(3D)gestione rotazione grafico 3d
set view 2,2,3,4 show view splot sin(x) pause -1
set view 1,90,2,45 show view splot sin(x) pause -1