Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/charts.py
diff options
context:
space:
mode:
Diffstat (limited to 'charts.py')
-rw-r--r--charts.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/charts.py b/charts.py
index f25a1e3..283cdd5 100644
--- a/charts.py
+++ b/charts.py
@@ -41,7 +41,7 @@ class Chart(gobject.GObject):
self.height = height
def data_set(self, data):
- '''Set chart data (dataSet)'''
+ """Set chart data (dataSet)"""
self.dataSet = (
('Puntos', [(i, l[1]) for i, l in enumerate(data)]),
@@ -73,32 +73,32 @@ class Chart(gobject.GObject):
}
def set_color_scheme(self, color='blue'):
- '''Set the chart color scheme'''
+ """Set the chart color scheme"""
self.options["colorScheme"]["args"] = {'initialColor': color}
def set_line_color(self, color='#d1e5ec'):
- '''Set the chart line color'''
+ """Set the chart line color"""
self.options["background"]["lineColor"] = color
def set_x_label(self, text="X"):
- '''Set the X Label'''
+ """Set the X Label"""
self.options["axis"]["x"]["label"] = str(text)
def set_y_label(self, text="Y"):
- '''Set the Y Label'''
+ """Set the Y Label"""
self.options["axis"]["y"]["label"] = str(text)
def set_type(self, type="vertical"):
- '''Set chart type (vertical, horizontal, line, pie)'''
+ """Set chart type (vertical, horizontal, line, pie)"""
self.type = type
def set_title(self, title="SimpleGraph Chart"):
- '''Set the chart title'''
+ """Set the chart title"""
self.options["title"] = title
def render(self, sg=None):
- '''Draw the chart
- Use the self.surface variable for show the chart'''
+ """Draw the chart
+ Use the self.surface variable for show the chart"""
self.surface = cairo.ImageSurface(cairo.FORMAT_ARGB32,
self.width,
self.height)
@@ -123,5 +123,5 @@ class Chart(gobject.GObject):
chart.render()
def as_png(self, file):
- '''Save the chart as png image'''
+ """Save the chart as png image"""
self.surface.write_to_png(file)