File: borders.dem

package info (click to toggle)
gnuplot 5.2.6%2Bdfsg1-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,968 kB
  • sloc: ansic: 81,983; cpp: 7,323; makefile: 2,186; sh: 1,542; lisp: 667; perl: 302; pascal: 194; tcl: 88; python: 46
file content (19 lines) | stat: -rw-r--r-- 396 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# $Id: borders.dem,v 1.11 2012/01/09 05:05:28 sfeam Exp $
#
unset grid
set xrange [0:10]
set yrange [0:10]
set format ""
#
set multiplot layout 4, 4 title "Demonstration of different border settings"
do for [bb = 0:15] {
    set border bb
    show border
    set label 1 sprintf("Border = %.0f",bb)  at 5,5 center
    plot 1/0 notitle
}
unset multiplot

pause -1 "Hit return to continue"
reset