-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlayout-default.gp
38 lines (27 loc) · 1.02 KB
/
layout-default.gp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# My Default Layout
load "unset-layout.gp"
# Tics
set xtics nomirror in scale 1,0.5 offset 0,0 autofreq textcolor rgb TEXTCOLOR
set ytics mirror in scale 1,0.5 offset 0,0 autofreq textcolor rgb TEXTCOLOR
# Key
set key inside right top Left revers samplen 2 spacing 1.3 textcolor rgb TEXTCOLOR
# Grid
set grid noxtics ytics lt 0 lw 2 linecolor rgb GRIDCOLOR
set mxtics 5
set mytics 5
# Border
set border 11 lt -1 lw 2 linecolor rgb GRIDCOLOR
# Labels
set label 200 '200: ylabel' at screen 0, graph 0.5 center offset 1,0 textcolor rgb TEXTCOLOR rotate by 90
set label 201 '' at screen 1, graph 0.5 center offset -1,0 textcolor rgb TEXTCOLOR rotate by 90
set label 100 '100: xlabel' at graph 0.5, graph 0 center offset 0,-3 textcolor rgb TEXTCOLOR
set label 101 '' at graph 0.5, graph 1 center offset 0,3 textcolor rgb TEXTCOLOR
set xlabel '' offset 0,0.0 textcolor rgb TEXTCOLOR
set ylabel '' offset 0,0.0 textcolor rgb TEXTCOLOR
#Margin
set lmargin 8
set bmargin 4
# Ranges
set xrange [*<10:*]
set yrange [*<10:*]
set zrange [*<10:*]