2013-02-26 246 views

回答

0

你可以这样做:

set arrow from X1,Y1 to X2,Y2 nohead 

当然,你可以通过添加linecolorlc)指定颜色和线条类型和样式以及,linetypelt)和linestylels)。 e.g:

set arrow from X1,Y1 to X2,Y2 lc rgb "green" nohead 

set arrow from X1,Y1 to X2,Y2 lc rgb "#00ff00" nohead 

这是一个有点很难说,当你说你要画一个箭头到未知点你想要什么。也许这是你想要的数据文件中的一些功能。如果是这样的话,你也许可以把它捡起来使用stats

stats 'datafile' u 1:2 
set arrow from X1,Y1 to STATS_pos_min_x,STATS_min_y nohead 

这将绘制从任何你定义X1线,Y1应能在最小的y的情节点。