You are here

function pData::getValues in Visitors 7.2

Same name and namespace in other branches
  1. 7 pChart/class/pData.class.php \pData::getValues()

File

pChart/class/pData.class.php, line 128

Class

pData

Code

function getValues($Serie) {
  if (isset($this->Data["Series"][$Serie]["Data"])) {
    return $this->Data["Series"][$Serie]["Data"];
  }
  else {
    return NULL;
  }
}