Thank you for all your continued work on gnuplot, very much looking forward to 5.5! We use it extensively in our day to day work and are very happy with it!
When plotting two line plots, where:
lc rgb variablelc palettethe rgb colors add to the automatically generated cb range. This behavior differs from plot, where only palette values are used to calculate the cb range.
Example (splot, doesn't work as expected):
splot '-' with lines lc rgb variable, '-' with lines lc palette
1 1 0 16711680
2 2 0 65280
3 3 0 16711680
e
5 5 0 0.01
6 6 0 1.0
7 5 0 0.05
e
The two line segments with explicitly specified rgb colors are correctly colored. The other two (palette colored) however are black, because the raw rgb values cause the cbrange to go from 0 - 1.8E7.
Comparison with 2d plot (works as expected):
plot '-' with lines lc rgb variable, '-' with lines lc palette
1 1 16711680
2 2 65280
3 3 16711680
e
5 5 0.01
6 6 1.0
7 5 0.05
e
Diff: