summaryrefslogtreecommitdiffstats
path: root/lib.php
diff options
context:
space:
mode:
authorRomain d'Alverny <rda@mageia.org>2012-09-04 16:24:16 +0000
committerRomain d'Alverny <rda@mageia.org>2012-09-04 16:24:16 +0000
commitdc9b2cb2886a6d076b76f222d3515e0f179bf9b4 (patch)
treee705c0c7b7738fb40bb026111e86c0ac60131704 /lib.php
parent459dd7e8150c07e73d6a95b9dfe18ec469c55e28 (diff)
downloadpkgsubmit-dc9b2cb2886a6d076b76f222d3515e0f179bf9b4.tar
pkgsubmit-dc9b2cb2886a6d076b76f222d3515e0f179bf9b4.tar.gz
pkgsubmit-dc9b2cb2886a6d076b76f222d3515e0f179bf9b4.tar.bz2
pkgsubmit-dc9b2cb2886a6d076b76f222d3515e0f179bf9b4.tar.xz
pkgsubmit-dc9b2cb2886a6d076b76f222d3515e0f179bf9b4.zip
adjust bg color
Diffstat (limited to 'lib.php')
-rw-r--r--lib.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib.php b/lib.php
index 1bdb13d..b00244e 100644
--- a/lib.php
+++ b/lib.php
@@ -285,7 +285,8 @@ function draw_status_chart() {
'title':'Packages status',
'width':600,
'height':200,
- 'colors': ['white', 'yellow', 'blue', 'green', 'orange', 'red']
+ 'colors': ['white', 'yellow', 'blue', 'green', 'orange', 'red'],
+ 'backgroundColor': '#f8f8f8'
};
var chart = new google.visualization.PieChart(document.getElementById('{$id}'));
@@ -334,7 +335,8 @@ function draw_buildtime_chart() {
title: 'How long are most builds?',
hAxis: {title: 'Time'},
'width':600,
- 'height':200
+ 'height':200,
+ 'backgroundColor': '#f8f8f8'
};
var chart = new google.visualization.ColumnChart(document.getElementById('{$id}'));
chart.draw(data, options);
@@ -359,7 +361,8 @@ function draw_buildschedule_chart() {
hAxis: {title: 'Hours'},
'width':600,
'height':200,
- 'curveType': 'function'
+ 'curveType': 'function',
+ 'backgroundColor': '#f8f8f8'
};
var chart = new google.visualization.LineChart(document.getElementById('{$id}'));
chart.draw(data, options);