From 996ef00868169b6d32a18bac0ecac5274315b600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20B=2E=20Brandenburg?= Date: Sun, 23 May 2010 18:06:17 -0400 Subject: Include line types as well. --- gnuplot.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gnuplot.py') diff --git a/gnuplot.py b/gnuplot.py index 1a55fc6..c4e2afd 100755 --- a/gnuplot.py +++ b/gnuplot.py @@ -201,7 +201,9 @@ class GnuPlotter(defapp.App): def do_linedemo(self, _): graphs = ["%d title 'ls %d'" % (x, x) #, x) # with linespoints ls %d for x in xrange(1,10)] - self.options.yrange = (0, 10) + graphs += ["%d title 'lt %d' with lines lt %d" % (10 + x, x, x) + for x in xrange(1,10)] + self.options.yrange = (0, 20) self.options.xrange = (0, 10) self.options.xticks = (0, 10) self.options.yticks = (0, 1) -- cgit v1.2.2