Fixes for Client Session graphing

This commit is contained in:
Deon George
2012-12-12 22:11:42 +11:00
parent d84d7de251
commit 31609b2121
3 changed files with 33 additions and 23 deletions

View File

@@ -68,7 +68,7 @@ class GoogleChart_ComboChart extends GoogleChart {
array_push($data,array('v'=>$k));
foreach ($this->_axis as $l => $axis)
array_push($data,array('v'=>$v[$l]));
array_push($data,array('v'=>isset($v[$l]) ? $v[$l] : 0));
$return['rows'][] = array('c'=>$data);
}