|
From: BBands <bb...@gm...> - 2011-07-20 15:53:49
|
Andreas,
>From 'help set style line"
"""
Linestyles created by this mechanism do not replace the default linetype
styles; both may be used. If you want plots to use the defined styles in
preference to the default linetypes, please see `set style increment`.
"""
and
"""
gnuplot> help set style increment
Syntax:
set style increment {default|userstyles}
show style increment
By default, successive plots within the same graph will use successive
linetypes from the default set for the current terminal type.
However, choosing `set style increment user` allows you to step through
the user-defined line styles rather than through the default linetypes.
Example:
set style line 1 lw 2 lc rgb "gold"
set style line 2 lw 2 lc rgb "purple"
set style line 4 lw 1 lc rgb "sea-green"
set style increment user
plot f1(x), f2(x), f3(x), f4(x)
"""
That should get you going with your line color issue.
John - who beat his head on this for quite a while
|