Index: charts_graphs_open_flash.class.inc
===================================================================
--- charts_graphs_open_flash.class.inc	(revision 335)
+++ charts_graphs_open_flash.class.inc	(revision 337)
@@ -146,7 +146,8 @@
   function _preprocess_values($values) {
     $labels = $this->x_axis->labels->labels;
     $i = 0;
-
+    $series_colors = self::series_colors();
+    $this->bg_colour = '#ffffff';
     switch ($this->type) {
       case 'pie':
         $new_vals = array();
@@ -156,10 +157,11 @@
             $obj = new stdClass();
             $obj->value = $val;
             $obj->label = $labels[$i];
+            $obj->colour = $series_colors[$i];
             $new_vals[] = $obj;
           }
           $i++;
-        }
+        }   
         return $new_vals;
 
       /**
