function graph_pie($title,$arr,$options="") { $labels = ''; $data = ''; $width=800; $height=225; if($options[width]) $width=$options[width]; if($options[height]) $height=$options[height]; if(!$options) $options=array(); foreach($arr as $label => $val){ if($labels) $labels .= '|'; $labels .= $label; if($data) $data .= ','; $data .= $val; } $url = "https://chart.googleapis.com/chart?"; $url .= "chs=800x$height"; // SIZE $url .= "&chco=5FD101,0C408C"; // STARTING COLOR $url .= "&chtt=" . urlencode($title); // TITLE $url .= "&cht=p3"; // TYPE $url .= "&chl=" . urlencode($labels); // LABELS //$url .= "&chdl=" . urlencode($labels); // LEGEND $url .= "&chd=t:" . $data; // DATA ?>