florian...@googlemail.com wrote:
> Dear all,
>
> I have the following problem: Even if I set the terminal option
> 'dashed', my terminal still produces only solid lines, apart from
> style 0.
The treated of line properties (color, dash/dot) is very different
in version 5. There is no longer any need for the terminal option
"set term ... dashed" because dashed lines are always possible.
Both the Release Notes and the User Manual for version 5 explain
how dashed lines now work.
http://gnuplot.sourceforge.net/ReleaseNotes_5_0.html
Here is a very brief summary from the Release Notes:
%%%%%
Earlier versions of gnuplot used the keyword "linetype" to mean both
the color and the solid/dot/dash pattern of a line. Version 5 has
separate keywords "linecolor" and "dashtype". You can use these keywords
directly in a plot command or assign any desired color and a dash pattern
to a linetype. You do not need to change the current terminal or
terminal mode in order to use dashed lines.
%%%%%
The following command assigns different dash patterns to linetypes
1 through 4. It does not affect the color of the linetypes.
set for [i=1:4] linetype i dashtype i
To return the linetype properties to their original state
set for [i=1:4] linetype i dashtype solid
There are other options for setting or defining dash patterns,
but that should get you started
Ethan