Back to demo index

gnuplot demo script: tics.dem

autogenerated by webify.pl on Sun Sep 17 19:55:41 2023
gnuplot version gnuplot 6.0 patchlevel rc2
# demo for tics settings

set xlabel "x"
set ylabel "y"
set mxtics

set title "Default tics settings"
set xrange [-15:15]
set yrange [-0.25:1]
plot sin(sqrt(x**2))/sqrt(x**2) notitle

Click here for minimal script to generate this plot




set title "Different modification of tics settings"
set tics scale 3,2 rotate by 45
set xtics out offset 0,-1.0
replot

Click here for minimal script to generate this plot




set xtics textcolor rgb "red" norotate
set ytics rotate by 90 offset 2,0
replot

Click here for minimal script to generate this plot




set title "Modified tics settings (pm3d palette with colorbar)"
set view map
set border 4095
set samples 25
set isosamples 20
set palette color positive
set samples 50; set isosamples 50
set tics norotate nooffset
set cbtics in scale 4
set xrange [-15:15]
set yrange [-15:15]
set zrange [-0.25:1]
splot sin(sqrt(x**2+y**2))/sqrt(x**2+y**2) with pm3d notitle

Click here for minimal script to generate this plot





print "End of tics demo."