function pData::getMax in Visitors 7.2
Same name and namespace in other branches
- 7 pChart/class/pData.class.php \pData::getMax()
File
- pChart/
class/ pData.class.php, line 143
Class
Code
function getMax($Serie) {
if (isset($this->Data["Series"][$Serie]["Max"])) {
return $this->Data["Series"][$Serie]["Max"];
}
else {
return NULL;
}
}