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