aboutsummaryrefslogtreecommitdiffstats
path: root/gnuplot.py
diff options
context:
space:
mode:
Diffstat (limited to 'gnuplot.py')
-rwxr-xr-xgnuplot.py4
1 files changed, 3 insertions, 1 deletions
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):
201 def do_linedemo(self, _): 201 def do_linedemo(self, _):
202 graphs = ["%d title 'ls %d'" % (x, x) #, x) # with linespoints ls %d 202 graphs = ["%d title 'ls %d'" % (x, x) #, x) # with linespoints ls %d
203 for x in xrange(1,10)] 203 for x in xrange(1,10)]
204 self.options.yrange = (0, 10) 204 graphs += ["%d title 'lt %d' with lines lt %d" % (10 + x, x, x)
205 for x in xrange(1,10)]
206 self.options.yrange = (0, 20)
205 self.options.xrange = (0, 10) 207 self.options.xrange = (0, 10)
206 self.options.xticks = (0, 10) 208 self.options.xticks = (0, 10)
207 self.options.yticks = (0, 1) 209 self.options.yticks = (0, 1)