You are here

function pData::getMin in Visitors 7.2

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

File

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

Class

pData

Code

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