aboutsummaryrefslogtreecommitdiff
path: root/boca-1.5.2/src/libchart/classes/VerticalChart.php
diff options
context:
space:
mode:
authorcassio <cassiopc@gmail.com>2013-07-02 05:44:46 +0000
committercassio <cassiopc@gmail.com>2013-07-02 05:44:46 +0000
commita9aa438ea0558eb0044cf1e54a9190ddb41b65e5 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /boca-1.5.2/src/libchart/classes/VerticalChart.php
parent94caebadeb66ad7b453d4258a796979cafb758b0 (diff)
downloadboca-a9aa438ea0558eb0044cf1e54a9190ddb41b65e5.tar.gz
boca-a9aa438ea0558eb0044cf1e54a9190ddb41b65e5.zip
restructuring of boca's git
Diffstat (limited to 'boca-1.5.2/src/libchart/classes/VerticalChart.php')
-rw-r--r--boca-1.5.2/src/libchart/classes/VerticalChart.php169
1 files changed, 0 insertions, 169 deletions
diff --git a/boca-1.5.2/src/libchart/classes/VerticalChart.php b/boca-1.5.2/src/libchart/classes/VerticalChart.php
deleted file mode 100644
index cdb4117..0000000
--- a/boca-1.5.2/src/libchart/classes/VerticalChart.php
+++ /dev/null
@@ -1,169 +0,0 @@
-<?php
- /** Libchart - PHP chart library
- *
- * Copyright (C) 2005-2006 Jean-Marc Trémeaux (jm.tremeaux at gmail.com)
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- *
- */
-
- /**
- * Vertical bar chart
- *
- * @author Jean-Marc Trémeaux (jm.tremeaux at gmail.com)
- */
-
- class VerticalChart extends BarChart
- {
- /**
- * Creates a new vertical bar chart
- *
- * @access public
- * @param integer width of the image
- * @param integer height of the image
- */
-
- function VerticalChart($width = 600, $height = 250)
- {
- parent::BarChart($width, $height);
-
- $this->setLabelMarginLeft(50);
- $this->setLabelMarginRight(30);
- $this->setLabelMarginTop(40);
- $this->setLabelMarginBottom(50);
- }
-
- /**
- * Print the axis
- *
- * @access private
- */
-
- function printAxis()
- {
- // Check if some points were defined
-
- if(!$this->sampleCount)
- return;
-
- $minValue = $this->axis->getLowerBoundary();
- $maxValue = $this->axis->getUpperBoundary();
- $stepValue = $this->axis->getTics();
-
- // Vertical axis
-
- for($value = $minValue; $value <= $maxValue; $value += $stepValue)
- {
- $y = $this->graphBRY - ($value - $minValue) * ($this->graphBRY - $this->graphTLY) / ($this->axis->displayDelta);
-
- imagerectangle($this->img, $this->graphTLX - 3, $y, $this->graphTLX - 2, $y + 1, $this->axisColor1->getColor($this->img));
- imagerectangle($this->img, $this->graphTLX - 1, $y, $this->graphTLX, $y + 1, $this->axisColor2->getColor($this->img));
-
- $this->text->printText($this->img, $this->graphTLX - 5, $y, $this->textColor, $value, $this->text->fontCondensed, $this->text->HORIZONTAL_RIGHT_ALIGN | $this->text->VERTICAL_CENTER_ALIGN);
- }
-
- // Horizontal Axis
-
- $columnWidth = ($this->graphBRX - $this->graphTLX) / $this->sampleCount;
-
- reset($this->point);
-
- for($i = 0; $i <= $this->sampleCount; $i++)
- {
- $x = $this->graphTLX + $i * $columnWidth;
-
- imagerectangle($this->img, $x - 1, $this->graphBRY + 2, $x, $this->graphBRY + 3, $this->axisColor1->getColor($this->img));
- imagerectangle($this->img, $x - 1, $this->graphBRY, $x, $this->graphBRY + 1, $this->axisColor2->getColor($this->img));
-
- if($i < $this->sampleCount)
- {
- $point = current($this->point);
- next($this->point);
-
- $text = $point->getX();
-
- $this->text->printDiagonal($this->img, $x + $columnWidth * 1 / 3, $this->graphBRY + 10, $this->textColor, $text);
- }
- }
- }
-
- /**
- * Print the bars
- *
- * @access private
- */
-
- function printBar()
- {
- // Check if some points were defined
-
- if(!$this->sampleCount)
- return;
-
- reset($this->point);
-
- $minValue = $this->axis->getLowerBoundary();
- $maxValue = $this->axis->getUpperBoundary();
- $stepValue = $this->axis->getTics();
-
- $columnWidth = ($this->graphBRX - $this->graphTLX) / $this->sampleCount;
-
- for($i = 0; $i < $this->sampleCount; $i++)
- {
- $x = $this->graphTLX + $i * ($this->graphBRX - $this->graphTLX) / $this->sampleCount;
-
- $point = current($this->point);
- next($this->point);
-
- $value = $point->getY();
-
- $ymin = $this->graphBRY - ($value - $minValue) * ($this->graphBRY - $this->graphTLY) / ($this->axis->displayDelta);
-
- $this->text->printText($this->img, $x + $columnWidth / 2, $ymin - 5, $this->textColor, $value, $this->text->fontCondensed, $this->text->HORIZONTAL_CENTER_ALIGN | $this->text->VERTICAL_BOTTOM_ALIGN);
-
- // Vertical bar
-
- $x1 = $x + $columnWidth * 1 / 5;
- $x2 = $x + $columnWidth * 4 / 5;
-
- imagefilledrectangle($this->img, $x1, $ymin, $x2, $this->graphBRY - 1, $this->barColor2->getColor($this->img));
- imagefilledrectangle($this->img, $x1 + 1, $ymin + 1, $x2 - 4, $this->graphBRY - 1, $this->barColor1->getColor($this->img));
- }
- }
-
- /**
- * Render the chart image
- *
- * @access public
- * @param string name of the file to render the image to (optional)
- */
-
- function render($fileName = null)
- {
- $this->computeBound();
- $this->computeLabelMargin();
- $this->createImage();
- $this->printLogo();
- $this->printTitle();
- $this->printAxis();
- $this->printBar();
-
- if(isset($fileName))
- imagepng($this->img, $fileName);
- else
- imagepng($this->img);
- }
- }
-?>