Hi,
I have a section in my gnuplot input file like this
set linetype 1 linecolor rgb "#0000DA"
set linetype 2 linecolor rgb "#0000DA"
set linetype 3 linecolor rgb "#FF00E4"
set linetype 4 linecolor rgb "#FF00E4"
set linetype 5 linecolor rgb "#0082DA"
set linetype 6 linecolor rgb "#0082DA"
set linetype 7 linecolor rgb "#FF00FF"
set linetype 8 linecolor rgb "#FF00FF"
....
using ($0/20.0):($1*0.0001) title "force" with lines lt 1 , '' \
using ($0/20.0):($2*0.0001) title "force" with lines lt 2 , '' \
using ($0/20.0):($3*0.0001) title "force" with lines lt 3 , '' \
using ($0/20.0):($4*0.0001) title "force" with lines lt 4 , '' \
using ($0/20.0):($5*0.0001) title "force" with lines lt 5 , '' \
using ($0/20.0):($6*0.0001) title "force" with lines lt 6 , '' \
using ($0/20.0):($7*0.0001) title "force" with lines lt 7 , '' \
using ($0/20.0):($8*0.0001) title "force" with lines lt 8
term is qt
When setting the linetype that way two things happen
1) The plot becomes very slow...there is a long time between
the according load command on the commandline of gnuplot
and the appearance of the plot in the window. This
does not happen when setting no linetypes.
2) The colors are not set according to the rb values as given
above. Some doe much, some do match nearly and dont match.
What can I do to fix both problems?
Thank you very much in advance for any help!
Best regards,
mcc
|