diff options
-rwxr-xr-x | gnuplot.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |