Gnuplot垂直虚线

时间:2019-12-07 08:46:31

标签: linux gnuplot

我想用GNUPLOT在我的图形上添加一条灰色的垂直虚线。

我的终端是;

set terminal postscript portrait enhanced color dashed lw 1 "DejaVuSans" 12 size 6,6
set output "pic.ps"
set xrange [30:110]
plot 'smth.txt' w lines ls 7 t ""

我研究了周围的几个想法,但似乎没有解释如何垂直获取虚线灰色线,例如x = 40(该线将平行于y轴)

The image I have is like this;

1 个答案:

答案 0 :(得分:1)

关键是使用set arrow命令并移除头部使其成为一行:

set arrow from 40,0 to 40,100 nohead lc rgb 'red' dt 2

您的图形未指定任何y值,因此请将其调整为“大于所需”值。

对于破折号(dt),checkout p.42 of manual。它是与终端相关的(我没有尝试使用Postscript),但是您可以根据需要进行调整。