我正在使用gnuplot
使用默认的windows
终端进行Windows。我需要绘制一条虚线而不是正常的实线
我用过
set style line 1 lt 0 lc 3
plot 'dashcca.txt'
但它不起作用
有什么建议吗?
答案 0 :(得分:2)
请参阅help terminal windows
,其中显示了终端选项dashed
。使用
set terminal windows dashed
或
set termoption dashed
当然,您必须使用虚线的线型。键入test
以查看当前终端设置支持的所有线路类型。
为了使用具有不同线条颜色的特定虚线图案,请使用例如
plot x linetype 2 linecolor 1
这使用线型2的虚线图案和线型1(红色)的颜色。您可以使用linecolor rgb
:
plot x linetype 2 linecolor rgb 'black', x**2 linetype 3 linecolor rgb '#bb0000'