How to set the color of the background in multiple plot in gnuplot? I tried the following script:
reset
set encoding iso_8859_1
set terminal pngcairo size 1400,800 font "Serif CMU,15" enhanced
set output "figure.png"
Row1 = "set tmargin screen 0.92; set bmargin screen 0.40" # Top and bottom margins
Row2 = "set tmargin screen 0.40; set bmargin screen 0.20"
Col1 = "set lmargin screen 0.10; set rmargin screen 0.50" # Left and right margins
Col2 = "set lmargin screen 0.50; set rmargin screen 0.88"
# Multiplot option with main title
set multiplot layout 2,2 rowsfirst
@Row1; @Col1 # Calling the macros
set object 1 rectangle from screen 0,0 to screen 1,1 behind fillcolor rgb '#F6DEBE' fillstyle solid noborder
plot 'blue.txt'
@Row1; @Col2
set object 1 rectangle from screen 0,0 to screen 1,1 behind fillcolor rgb '#F6DEBE' fillstyle solid noborder
plot 'blue.txt'
@Row2; @Col1
set object 1 rectangle from screen 0,0 to screen 1,1 behind fillcolor rgb '#F6DEBE' fillstyle solid noborder
plot 'blue.txt'
@Row2; @Col2
set object 1 rectangle from screen 0,0 to screen 1,1 behind fillcolor rgb '#F6DEBE' fillstyle solid noborder
plot 'blue.txt'
I also tried to set unset object 1 after each plot.
I obtained:


