我已经使用箭头绘制一条垂直线,我想标题它所以它显示在键中。有办法吗?据我所知,手册中title
的语法中没有arrow
选项,但我确信有一种解决方法。
我唯一想到的是绘制与绘图范围之外的颜色相同的箭头并使用其标题,但它相当笨拙。
我正在使用终端pngcairo
,以防它相关。
答案 0 :(得分:3)
您可以绘制一些with vectors
,其中会在密钥中显示title
。它根据数据点绘制箭头。 using
语句是 x : y :Δ x :Δ y 尾部定位at( x , y ),头部位于( x +Δ
set terminal pngcairo dashed
set output 'plot.png'
set angles degrees
set xrange [0:360]
set yrange [-2:2]
plot sin(x), '-' using 1:(-2):(0):(4) with vectors nohead lc rgb 'black' title '90 degrees'
90
e
答案 1 :(得分:3)