|
From: Michael B. <mj...@gm...> - 2013-07-03 00:22:20
|
Hi, I have the following gnuplot file:
set terminal svg size 800,600 dashed linewidth 2
set output
set multiplot
plot cos(x), \
sin(x)
The SVG it outputs results in the first path being defined as <path
d='M716.2,34.7 L758.4,34.7... and the second path being defines as <path
stroke-dasharray=' 5,8' d='M716.2,52.7 L758.4,52.7... Note that the first
path is not dashed, while the second path is.
Why is the first line not dashed? Am I missing something in the manual? I
thought specifying "dashed" when I set the terminal would make all the
lines dashed, by default.
If it helps, gnuplot --version yeilds:
gnuplot 4.6 patchlevel 3
And I'm running OS X 10.8.4 (with gnuplot being installed from brew).
Thanks for your help,
Michael
|