0

我的 Aqua 终端输出在我想要的位置显示实线:底部边框和 x 和 y 网格。

当我将输出更改为 pdfcairo 时,我找不到使 xgrid 线成为实线的方法。这是一个已知的问题?

set terminal pdfcairo size 13.5,9.8 solid screen 0,.3 lt 1 lw 2

GNUplot 4.6.1
OSX 10.6.8

4

1 回答 1

0

如果您想要网格的实线,我会为网格使用实线类型,而不是依赖终端设置:

set term pdfcairo size 13.5,9.8 solid
set output 'foo.pdf'
set grid lt 1 lc rgb 'black'
plot sin(x)

作为旁注,我 对你的命令部分pdfcairo感到窒息。我不确定它在那里做什么,但我很确定这不是你想要的。screen 0,.3set term

于 2013-03-04T17:16:40.863 回答