|
From:
<br...@ph...> - 2005-09-30 13:41:13
|
Fabiano Caixeta Duarte wrote: > I need a blue graphic (set of bars) and I don't know how to set it. I got a > set of red bars instead :( You need to understand that gnuplot tries to use the *same* scripts on both coloured and black&white output formats, and still get useful results on both. The way we do that is by specifying not a colour, but a "line type", which is an index into a table of colours. If you don't specify the line type yourself, gnuplot picks one automatically, and yes, that choice often does start with red. > set term png Read 'help png' --- one possible answer for your might be in there. And find out how plot 'ADM' u 1:2 t 'ADM' lt 3 creates a different effect from what you got so far, by reading 'help plot' and 'help plot with'. |