You are here

function pData::getValueAt in Visitors 7.2

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

File

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

Class

pData

Code

function getValueAt($Serie, $Index = 0) {
  if (isset($this->Data["Series"][$Serie]["Data"][$Index])) {
    return $this->Data["Series"][$Serie]["Data"][$Index];
  }
  else {
    return NULL;
  }
}