Hi all,

I am currently using gretl cvs 1.9.91 on Windows 8. I set up the following example to illustrate that gnuplot does not recognize my color choice, as the two time-series still use the default color scheme butnot mine. The gnuplot version is 5.0 rc1.

<hansl>
set echo off
set messages off

open denmark.gdt --quiet
# Print TSs:
gnuplot LRM LRY --with-lines --time-series \
--output="C:\Users\artur.tarassow\Desktop\TEST.pdf" \
{ set terminal pdfcairo font 'Helvetica,15' lw 3 ; \
set style line 1 lt 1 lc rgb 'black' ; \
set style line 2 lt 2 lc rgb 'green' ; \
set style line 3 lt 2 lc rgb 'red' ; \
set style line 4 lt 2 lc rgb 'green' ; \
set style line 5 lt 2 lc rgb 'orange' ; \
set style line 6 lt 6 lc rgb 'black' ; \
set ylabel '' ; set xlabel 'Horizon' ; \
set key bottom below ; }
</hansl>

Artur