-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgnuplot
More file actions
93 lines (71 loc) · 3.09 KB
/
gnuplot
File metadata and controls
93 lines (71 loc) · 3.09 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
set macro
# Palette URL:
# http://colorschemedesigner.com/#3K40zsOsOK-K-
red_000 = "#F9B7B0"
red_025 = "#F97A6D"
red_050 = "#E62B17"
red_075 = "#8F463F"
red_100 = "#6D0D03"
blue_000 = "#A9BDE6"
blue_025 = "#7297E6"
blue_050 = "#1D4599"
blue_075 = "#2F3F60"
blue_100 = "#031A49"
green_000 = "#A6EBB5"
green_025 = "#67EB84"
green_050 = "#11AD34"
green_075 = "#2F6C3D"
green_100 = "#025214"
brown_000 = "#F9E0B0"
brown_025 = "#F9C96D"
brown_050 = "#E69F17"
brown_075 = "#8F743F"
brown_100 = "#6D4903"
grid_color = "#b6bbaf"
grid_width = "1.2"
text_color = "#6a6a6a"
my_font = "NimbusSanL-Regu, 12"
my_line_width = "2"
my_axis_width = "1.5"
my_ps = "1.2"
# define the font for the terminal
set term wxt enhanced font my_font
# set default point size
set pointsize my_ps
# set the style for the set 1, 2, 3...
set style line 1 linecolor rgbcolor blue_025 linewidth @my_line_width pt 7 lt 1
set style line 2 linecolor rgbcolor green_025 linewidth @my_line_width pt 5 lt 1
set style line 3 linecolor rgbcolor red_025 linewidth @my_line_width pt 9 lt 1
set style line 4 linecolor rgbcolor brown_025 linewidth @my_line_width pt 13 lt 1
set style line 5 linecolor rgbcolor blue_050 linewidth @my_line_width pt 11 lt 1
set style line 6 linecolor rgbcolor green_050 linewidth @my_line_width pt 7 lt 1
set style line 7 linecolor rgbcolor red_050 linewidth @my_line_width pt 5 lt 1
set style line 8 linecolor rgbcolor brown_050 linewidth @my_line_width pt 9 lt 1
set style line 9 linecolor rgbcolor blue_075 linewidth @my_line_width pt 13 lt 1
set style line 10 linecolor rgbcolor green_075 linewidth @my_line_width pt 11 lt 1
set style line 11 linecolor rgbcolor red_075 linewidth @my_line_width pt 7 lt 1
set style line 12 linecolor rgbcolor brown_075 linewidth @my_line_width pt 5 lt 1
set style line 13 linecolor rgbcolor blue_100 linewidth @my_line_width pt 9 lt 1
set style line 14 linecolor rgbcolor green_100 linewidth @my_line_width pt 13 lt 1
set style line 15 linecolor rgbcolor red_100 linewidth @my_line_width pt 11 lt 1
set style line 16 linecolor rgbcolor brown_100 linewidth @my_line_width pt 7 lt 1
set style line 17 linecolor rgbcolor "#224499" linewidth @my_line_width pt 5 lt 1
# this is to use the user-defined styles we just defined.
set style increment user
# set the color and font of the text of the axis
set xtics textcolor rgb text_color font my_font
set ytics textcolor rgb text_color font my_font
set ztics textcolor rgb text_color font my_font
# set the color and font (and a default text) for the title and each axis
set title "Top Title" textcolor rgb text_color font my_font
set xlabel "X Label (unit)" textcolor rgb text_color font my_font
set ylabel "Y Label (unit)" textcolor rgb text_color font my_font
set zlabel "Z Label (unit)" textcolor rgb text_color font my_font
# set the text color and font for the label
set label textcolor rgb text_color font my_font
# set the color and width of the axis border
set border 31 lw @my_axis_width lc rgb text_color
# set key options
set key inside width 2 height 2 enhanced spacing 2 font my_font textcolor rgb text_color
# set grid color
set grid lc rgb grid_color lw grid_width