的颜色索引用于impulses
选择线型,而用于labels
线型。此行为仍然存在于当前的开发版本中。根据文档, 的行为labels
是正确的。help linecolor variable
说:“lc variable
告诉程序使用从输入数据的一列中读取的值作为线型索引......可以使用类似的方式设置文本颜色tc variable
”。错误、功能或错误的文档?
作为一种解决方法,您可以使用lc palette
并适当定义palette
:
set style line 1 linetype 1 linewidth 2 pointtype 3 linecolor rgb "aquamarine"
set style line 2 linetype 1 linewidth 2 pointtype 3 linecolor rgb "blue"
set style line 3 linetype 1 linewidth 2 pointtype 3 linecolor rgb "coral"
set palette defined (1 "aquamarine", 2 "blue", 3 "coral")
unset colorbox
set xrange [0:3]
set yrange [0:3]
# function to get style index for coloring:
getCol(x) = (x==0)?1:((x==1)?2:3)
unset key
plot \
'-' using ($1+0.5):($2+0.5):(getCol($2)) with impulses lc variable, \
'' using ($1+0.5):($2+0.5):(stringcolumn(2)):(getCol($2)) with labels \
tc palette point ls 1 pt 7 lc palette offset 1,1
0 0
1 1
1.5 1
2 2
e
0 0
1 1
1.5 1
2 2
e
这给出了结果:
我希望解决方法也适用于您的实际情况。如果由于某种原因无法重新定义调色板,则可以使用lc rgb variable
,在这种情况下,最后一列必须是相应 rgb 颜色的整数表示:
set style line 1 linetype 1 linewidth 2 pointtype 3 linecolor rgb "aquamarine"
set style line 2 linetype 1 linewidth 2 pointtype 3 linecolor rgb "blue"
set style line 3 linetype 1 linewidth 2 pointtype 3 linecolor rgb "coral"
set xrange [0:3]
set yrange [0:3]
rgb(r,g,b) = 65536 * int(r) + 256 * int(g) + int(b)
rgb1 = rgb(2, 215, 245) # something like aquamarine
rgb2 = rgb(0, 0, 255)
rgb3 = rgb(245,140,2)
getCol(x) = (x==0)?rgb1:((x==1)?rgb2:rgb3)
unset key
plot \
'-' using ($1+0.5):($2+0.5):(getCol($2)) with impulses \
lc rgb variable, \
'' using ($1+0.5):($2+0.5):(stringcolumn(2)):(getCol($2)) with labels \
tc rgb variable point ls 1 pt 7 lc rgb variable offset 1,1
0 0
1 1
1.5 1
2 2
e
0 0
1 1
1.5 1
2 2
e
您可能只需要调整 rgb 值。
但是,我将在 gnuplot 邮件列表上提出这个讨论,看看这是否真的是一个错误,或者其他什么。