X-Received: by 10.159.36.72 with SMTP id 66mr1425747uaq.9.1469151716334; Thu, 21 Jul 2016 18:41:56 -0700 (PDT) X-Received: by 10.36.101.10 with SMTP id u10mr67365itb.3.1469151716238; Thu, 21 Jul 2016 18:41:56 -0700 (PDT) Path: csiph.com!usenet.blueworldhosting.com!feeder01.blueworldhosting.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!c52no4029809qte.1!news-out.google.com!d130ni10334ith.0!nntp.google.com!f6no3359446ith.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.graphics.apps.gnuplot Date: Thu, 21 Jul 2016 18:41:55 -0700 (PDT) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=98.194.161.206; posting-account=FGaAEwoAAAAcxYKDlhUaIvRgf34LZbOL NNTP-Posting-Host: 98.194.161.206 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Can't draw dashed lines in cygwin X11 From: ijung5399@gmail.com Injection-Date: Fri, 22 Jul 2016 01:41:56 +0000 Content-Type: text/plain; charset=UTF-8 Lines: 24 Xref: csiph.com comp.graphics.apps.gnuplot:3372 I'm drawing multiple lines in a chart so dashed line option is required. I started with 'startxwin' and I tried in a cygwin terminal with gnuplot 5.0 patchlevel 3. My env is: CYGWIN_NT-6.1 MYCOM 2.5.2(0.297/5/3) 2016-06-23 14:29 x86_64 Cygwin I tested with one of internet example script but no luck: ==== set term x11 enhanced dashed "arial,16" set notitle set xlabel "x" set ylabel "y" set size square set xrange [450:750] set yrange [450:750] set key inside top right set style line 1 lc rgb "#FF0055" lt 2 set style line 2 lc rgb "#2C397D" lt 3 f(x) = x g(x) = x + 100 plot f(x) ls 2 lw 3 notitle, g(x) ls 1 lw 1 notitle pause -1 ====