xvedi listati per
encoding , format, function style
# Encoding gestione codice
set encoding show encoding set encoding cp850 show encoding
# Format(axes-tics) (tic mark.label)gestione formato per tics
set format show format set format x %g set format y %g plot sin(x) pause -1 set format x %f set format y %g plot cos(x) pause -1 show format
# Function style(style) gestione grafica per file.txt,plt
set function style lines plot x pause -1 set function style points plot sin(x) pause -1 set function style linespoints plot cos(x) pause -1 set function style dots plot sin(x),cos(x) pause -1 set function style impulses plot sin(x) pause -1 set function style errorbars plot sin(x) pause -1 set function style boxes plot cos(x) pause -1 set function style boxerrorbars plot cos(x) pause -1 show function style