Windows终端-gnuplot中的虚线

时间:2013-12-23 12:30:34

标签: gnuplot

我正在使用gnuplot使用默认的windows终端进行Windows。我需要绘制一条虚线而不是正常的实线

我用过

set style line 1 lt 0 lc 3
plot 'dashcca.txt'

但它不起作用

有什么建议吗?

1 个答案:

答案 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'