The graphs are great and very easy to do...I just started and don't have any on my site yet. I never saw the array_walk function but I did the following to convert metric on the temp high/low graph:
// create array of max-temps from clientrawdaily and convert C->F
// positions 1 - 31 are daily high temperatures last 31 days
$y = array();
for ($i = 1; $i < 32; $i++) {
$temp_hi = round(($clientrawdaily[$i] * 1.8 + 32),1);
array_push($y, $temp_hi);
}
$datax = $y;
Does anyone know how to change the jpgraph "drop shadow" for backgrounds other than white? I know how to change the shadow color but the upper right and lower left corners are white. I don't see anyway to make these the color of the background. You can see this on the Carter Lake site (Awesome site btw) on his graph/stats page. The background is light blue and you can see the white parts of the drop shadow that need to be light blue for the Shadow to have the full effect.