computePercent(); if ($hideLabel) { $this->plot->setGraphPadding(new Padding(0)); $this->plot->setTitleHeight(0); } $this->computeLayout(!$hideLabel); $this->createImage(); if (!isset($options['hideLogo']) || $options['hideLogo'] == false) $this->plot->printLogo(); if (!isset($options['hideTitle']) || $options['hideTitle'] == false) $this->plot->printTitle(); if (!isset($options['hidePie']) || $options['hidePie'] == false) $this->printPie(); if (!$hideLabel) $this->printLabel(); /*if(isset($options['fileName'])) imagepng($this->img, $options['fileName']); else imagepng($this->img); */ $this->plot->render($options['fileName']); } }