该脚本可以正常工作,而不会改变颜色,但是:

plot '_numXY' using 2:3:(sprintf('%d', $1)) \
    with labels offset 0,1 point pointtype 6 ps 2 notitle lc rgb "blue"
点是黑色的。我想看到蓝色的点。
为什么lc rgb "blue"不起作用?

最佳答案

如果lc绘图样式不立即遵循labels选项,则将忽略point设置。根据您的情况,您只能将notitle放在最后。

plot '_numXY' using 2:3:(sprintf('%d', $1)) \
    with labels offset 0,1 point pointtype 6 ps 2 lc rgb "blue" notitle

作为演示示例:
set samples 11
set xrange [0:10]
plot '+' using 1:1:(sprintf('%d', $1)) \
    with labels offset 0,1 point pointtype 6 ps 2 lc rgb "blue" notitle

4.6.5的结果是:

09-27 06:27