Gnuplot网格具有备用线条样式

时间:2014-02-03 16:30:07

标签: gnuplot

使用Gnuplot我绘制下图 -

现在,正如您在图像中看到的那样,线之间难以识别其末端的块。所以我想用不同的颜色或样式交替地对网格进行着色。

我现在用来为网格着色的代码是 -

set style line 12 lc rgb '#808080' lt 0 lw 1
set grid back ls 12

但是,我无法找到任何方法来获取网格并将其交替设置为另一种风格。在Gnuplot甚至可能吗?

我的意思是,是否可以在gnuplot的网格中为主要和次要抽搐设置不同的线条样式?

谢谢!

enter image description here

1 个答案:

答案 0 :(得分:9)

是的,您可以为次要和主要网格线使用不同的样式,请参阅help grid

set style line 12 lc rgb 'blue' lt 1 lw 2
set style line 13 lc rgb 'red' lt 1 lw 1
set grid xtics ytics mxtics mytics ls 12, ls 13
set mxtics 4
set mytics 4
plot x

4.6.3的结果是:

enter image description here