This shouldn't be such a big problem, but it appears it is. I have a file with 3 columns - x data, y data and hex color data.
plot "data" using 1:2:3 with filledcurves x1 linecolor variable
If I use this code, the line above my plot - the border - is indeed colored like that (using the hex color data). However, I want to make sure that the fill color is also the same as the line color. Right now it is grey.
Referring to gnuplot help, I read this on fillstyle
:
The
solid
option causes filling with a solid color, if the terminal supports that. Thedensity
parameter specifies the intensity of the fill color. At adensity
of 0.0, the box is empty, atdensity
of 1.0, the inner area is of the same color as the current linetype.
I'm interpreting this as following. If I use:
set style solid 1
It will make my filling go solid, and copy the color of the current linetype. This linetype currently has the linecolor "variable" set - so it should just copy that value, right? However, it does not.
The basic question to be answered here is:
How do I make specific parts of the filledcurves
style have a different fillcolor?