You are here

function pData::getMax in Visitors 7.2

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

File

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

Class

pData

Code

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