Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/charts.py
diff options
context:
space:
mode:
authorAgustin Zubiaga <aguzubiaga97@gmail.com>2012-01-26 20:37:30 (GMT)
committer Agustin Zubiaga <aguzubiaga97@gmail.com>2012-01-26 20:37:30 (GMT)
commit1655262c148a6eb1f076c046b80be5dd29055c49 (patch)
tree36fc0d5d678c7f7088c762ecff3b3eb35feb8cff /charts.py
parent922f02b292925da6a5920777f6decce40e53c07a (diff)
Use the activity name for the chart title and the user colors for the chart color
Diffstat (limited to 'charts.py')
-rw-r--r--charts.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/charts.py b/charts.py
index dc31ad5..3915aa1 100644
--- a/charts.py
+++ b/charts.py
@@ -65,7 +65,7 @@ class Chart(gobject.GObject):
}
},
'background': {
- 'chartColor': '#f3f9fb',
+ 'chartColor': '#FFFFFF',
'lineColor': '#d1e5ec'
},
'colorScheme': {
@@ -79,9 +79,6 @@ class Chart(gobject.GObject):
def set_color_scheme(self, color='blue'):
self.options["colorScheme"]["args"] = {'initialColor': color}
- def set_bg_color(self, color='#f3f9fb'):
- self.options["background"]["chartColor"] = color
-
def set_line_color(self, color='#d1e5ec'):
self.options["background"]["lineColor"] = color