From ed226c60eb7ae7d6af4d55a85ebdce17e81c9374 Mon Sep 17 00:00:00 2001 From: "Bjoern B. Brandenburg" Date: Tue, 28 Jun 2011 11:14:13 -0400 Subject: Support setting the point size. --- gnuplot.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gnuplot.py') diff --git a/gnuplot.py b/gnuplot.py index 36ab73c..cb341c6 100755 --- a/gnuplot.py +++ b/gnuplot.py @@ -126,6 +126,7 @@ class Plot(object): self.monochrome = None self.dashed_lines = None self.rounded_caps = None + self.pointsize = None self.xrange = None self.xticks = None @@ -219,6 +220,9 @@ class Plot(object): if self.title: g('set title "%s"' % self.title) + if isset(self.pointsize): + g("set pointsize %s" % self.pointsize) + logscale = "" if self.xlog: logscale += "x" -- cgit v1.2.2