Gnuplot 在线条下方绘制阴影区域

Gnuplot 在线条下方绘制阴影区域,gnuplot,Gnuplot,我试图遮住线下的区域,但当我这样做时,我获得了线上的阴影区域,即使我在下面指出。你知道阴影区域的问题是什么吗 set style fill patter 2 border set style data lines plot "data2.dat" using 1:3:4:5 with yerrorlines ls 1 linecolor rgb "blue",\ "" using 1:2 with filledcurves below linecolor rgb "r

我试图遮住线下的区域,但当我这样做时,我获得了线上的阴影区域,即使我在下面指出。你知道阴影区域的问题是什么吗

set style fill patter 2 border
set style data lines
plot "data2.dat" using 1:3:4:5 with yerrorlines ls 1 linecolor rgb "blue",\
      ""         using 1:2 with filledcurves below linecolor rgb "red" 
结果是相反的:

我的数据是:

X                Y1            Y2         C.Interval(-)  C.Interval(+)     
0.1            0.1111        0.1111       0.110950699    0.111166503
0.2            0.2500        0.2498       0.249474612    0.250095218      
0.4            0.6667        0.6675       0.666310581    0.668667648
0.6            1.4993        1.4962       1.491809644    1.500612543   
0.8            4.0000        4.0069       3.982266522    4.031590962
我怎样才能遮住下面的区域

多谢各位


干杯

我认为我需要在下面的后面包含参数x1,以指示阴影区域必须在线条下方

gnuplot> plot "data2.dat" using 1:3:4:5 with yerrorlines ls 1 linecolor rgb "blue",\
""         using 1:2 with filledcurves below x1 linecolor rgb "red"