You are here

function pData::drawAll in Visitors 7.2

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

File

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

Class

pData

Code

function drawAll() {
  foreach ($this->Data["Series"] as $Key => $Value) {
    if ($this->Data["Abscissa"] != $Key) {
      $this->Data["Series"][$Key]["isDrawable"] = TRUE;
    }
  }
}