On Wed, 21 May 2014, Logan Kelly wrote:
I have a suggestion for the GUI interface for time series plots.
Could an option be added to include something like
set termoption dash
in the gnuplot script. It could be a check box in the main tab of
the gretl plot control dialog.
Hmm, what version of gnuplot are you using? With gnuplot 4.6.3 on
Fedora 20, "set termoption dash" (or the full form "set termoption
dashed") doesn't seem to do anything at all for the terminals I'm
interested in (pngcairo, pdfcairo, epscairo, svg): lines remain
solid.
Test script (change terminal and filename extension at will):
<gnuplot>
set terminal pngcairo
set output 'dashed.png'
set termoption dashed
plot x**2
</gnuplot>
Allin