function pData::getValueAt

5.x pData.class.php pData::getValueAt($Serie, $Index = 0)

File

inc/pchart/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);
  }
}