Back to demo index

gnuplot demo script: fillstyle.dem

autogenerated by webify.pl on Sat May 30 10:44:11 2009
gnuplot version gnuplot 4.3 patchlevel CVS-25May2009

Your browser does not support the HTML 5 canvas element

#
# $Id: fillstyle.dem,v 1.3 2003/10/17 15:02:21 mikulik Exp $
#
# E A Merritt <merritt@u.washington.edu>          24-Sep-2002
#
# Demo for revised fillstyle code selected by 
# ./configure --enable-filledboxes --enable-relative-boxwidth
#

set samples 25
unset xtics
unset ytics
set yrange [0:120]

set title "A demonstration of boxes with default properties"
plot [-10:10] 100/(1.0+x*x) title 'distribution' with boxes


Click here for minimal script to generate this plot



Your browser does not support the HTML 5 canvas element

set title "A demonstration of boxes with style fill solid 1.0"
set style fill solid 1.0
replot


Click here for minimal script to generate this plot



Your browser does not support the HTML 5 canvas element

set title "A demonstration of boxes with style fill solid border -1"
set style fill solid border -1
replot


Click here for minimal script to generate this plot



Your browser does not support the HTML 5 canvas element

set title "Filled boxes of reduced width"
set boxwidth 0.5 
replot


Click here for minimal script to generate this plot



Your browser does not support the HTML 5 canvas element

set title "Filled boxes at 50% fill density"
set style fill solid 0.25 border
replot


Click here for minimal script to generate this plot



Your browser does not support the HTML 5 canvas element

set title "A demonstration of boxes with style fill solid 0.25 noborder"
set style fill solid 0.25 noborder
replot


Click here for minimal script to generate this plot



Your browser does not support the HTML 5 canvas element

set title "A demonstration of boxes in mono with style fill pattern"
set samples 11
set boxwidth 0.5 
set style fill pattern border
plot [-2.5:4.5] 100/(1.0+x*x) title 'pattern 0' with boxes lt -1, \
                 80/(1.0+x*x) title 'pattern 1' with boxes lt -1, \
                 40/(1.0+x*x) title 'pattern 2' with boxes lt -1, \
                 20/(1.0+x*x) title 'pattern 3' with boxes lt -1


Click here for minimal script to generate this plot



Your browser does not support the HTML 5 canvas element