Initial Commit of AgileBill Open Source
This commit is contained in:
87
includes/pear/Image/tests/axis/category.php
Normal file
87
includes/pear/Image/tests/axis/category.php
Normal file
@@ -0,0 +1,87 @@
|
||||
<?php
|
||||
|
||||
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
|
||||
|
||||
/**
|
||||
* This is a visual test case, testing the category axis.
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* LICENSE: 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., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*
|
||||
* @category Images
|
||||
* @package Image_Graph
|
||||
* @subpackage Tests
|
||||
* @author Jesper Veggerby <pear.nosey@veggerby.dk>
|
||||
* @copyright Copyright (C) 2003, 2004 Jesper Veggerby Hansen
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version CVS: $Id: category.php,v 1.4 2005/08/03 21:21:58 nosey Exp $
|
||||
* @link http://pear.php.net/package/Image_Graph
|
||||
*/
|
||||
|
||||
require_once 'Image/Graph.php';
|
||||
|
||||
// create the graph
|
||||
$Graph =& Image_Graph::factory('graph', array(400, 300));
|
||||
// add a TrueType font
|
||||
$Font =& $Graph->addNew('ttf_font', 'Verdana');
|
||||
// set the font size to 11 pixels
|
||||
$Font->setSize(7);
|
||||
|
||||
$Graph->setFont($Font);
|
||||
|
||||
// create the plotarea
|
||||
$Graph->add(
|
||||
Image_Graph::vertical(
|
||||
Image_Graph::factory('title', array('Testing Category Axis', 10)),
|
||||
$Plotarea = Image_Graph::factory('plotarea', array('Image_Graph_Axis_Category', 'Image_Graph_Axis_Category')),
|
||||
5
|
||||
)
|
||||
);
|
||||
|
||||
$DS =& Image_Graph::factory('dataset');
|
||||
$DS->addPoint('Germany', 'England');
|
||||
$DS->addPoint('Denmark', 'France');
|
||||
$DS->addPoint('Sweden', 'Denmark');
|
||||
$DS->addPoint('England', 'France');
|
||||
$DS->addPoint('Norway', 'Finland');
|
||||
$DS->addPoint('Denmark', 'Finland');
|
||||
$DS->addPoint('Iceland', 'Germany');
|
||||
$DS->addPoint('Norway', 'France');
|
||||
|
||||
$DS2 =& Image_Graph::factory('dataset');
|
||||
$DS2->addPoint('Sweden', 'France');
|
||||
$DS2->addPoint('Austria', 'Germany');
|
||||
$DS2->addPoint('Norway', 'Holland');
|
||||
$DS2->addPoint('Denmark', 'Germany');
|
||||
$DS2->addPoint('Sweden', 'Holland');
|
||||
$DS2->addPoint('Iceland', 'Denmark');
|
||||
|
||||
/* Expect x-axis to be ordered:
|
||||
* Germany, Denmark, Sweden, England, Austria, Norway, Iceland
|
||||
*
|
||||
* Expect y-axis to be ordered:
|
||||
* England, France, Denmark, Finland, Holland, Germany
|
||||
*
|
||||
* Special points are X = Austria and Y = Holland, which are expected to be
|
||||
* "placed" before Norway and Germany respective (since that is the point at
|
||||
* which they exist "before" in the dataset on their first occurence)
|
||||
*/
|
||||
|
||||
$Plot =& $Plotarea->addNew('line', $DS);
|
||||
$Plot->setLineColor('red');
|
||||
|
||||
$Plot2 =& $Plotarea->addNew('line', $DS2);
|
||||
$Plot2->setLineColor('blue');
|
||||
|
||||
$Graph->done();
|
||||
?>
|
82
includes/pear/Image/tests/axis/intersection.php
Normal file
82
includes/pear/Image/tests/axis/intersection.php
Normal file
@@ -0,0 +1,82 @@
|
||||
<?php
|
||||
|
||||
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
|
||||
|
||||
/**
|
||||
* This is a visual test case, testing the setting of the intersection of
|
||||
* a x-axis on a y-axis, and the intersection of a y-axis on the x- axis.
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* LICENSE: 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., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*
|
||||
* @category Images
|
||||
* @package Image_Graph
|
||||
* @subpackage Tests
|
||||
* @author Jesper Veggerby <pear.nosey@veggerby.dk>
|
||||
* @copyright Copyright (C) 2003, 2004 Jesper Veggerby Hansen
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version CVS: $Id: intersection.php,v 1.5 2005/08/03 21:21:58 nosey Exp $
|
||||
* @link http://pear.php.net/package/Image_Graph
|
||||
*/
|
||||
|
||||
require_once 'Image/Graph.php';
|
||||
|
||||
// create the graph
|
||||
$Graph =& Image_Graph::factory('graph', array(600, 400));
|
||||
// add a TrueType font
|
||||
$Font =& $Graph->addNew('ttf_font', 'Verdana');
|
||||
// set the font size to 11 pixels
|
||||
$Font->setSize(7);
|
||||
|
||||
$Graph->setFont($Font);
|
||||
|
||||
// create the plotarea
|
||||
$Graph->add(
|
||||
Image_Graph::vertical(
|
||||
Image_Graph::factory('title', array('Testing Axis Intersection', 10)),
|
||||
$Matrix = Image_Graph::factory('Image_Graph_Layout_Matrix', array(3, 3)),
|
||||
5
|
||||
)
|
||||
);
|
||||
|
||||
$DS[0] =& Image_Graph::factory('dataset', array(array('0' => 1, '1' => 2, '2' => 0)));
|
||||
$DS[1] =& Image_Graph::factory('dataset', array(array('0' => -1, '1' => 2, '2' => 2)));
|
||||
$DS[2] =& Image_Graph::factory('dataset', array(array('0' => 1, '1' => 3, '2' => 2)));
|
||||
|
||||
for ($row = 0; $row < 3; $row++) {
|
||||
for ($col = 0; $col < 3; $col++) {
|
||||
if (isset($DS[$col])) {
|
||||
$Plotarea =& $Matrix->getEntry($row, $col);
|
||||
$AxisY =& $Plotarea->getAxis(IMAGE_GRAPH_AXIS_Y);
|
||||
$AxisX =& $Plotarea->getAxis(IMAGE_GRAPH_AXIS_X);
|
||||
if ($row >= 1) {
|
||||
$AxisY->setAxisIntersection(1);
|
||||
$AxisY->setTitle("Intersect\n at x = 1");
|
||||
} else {
|
||||
$AxisY->setTitle("Intersect\nat x = min");
|
||||
}
|
||||
if ($row >= 2) {
|
||||
$AxisX->setAxisIntersection(1);
|
||||
$AxisX->setTitle('Intersect at y = 1');
|
||||
} else {
|
||||
$AxisX->setTitle('Intersect at y = 0');
|
||||
}
|
||||
$Plot =& $Plotarea->addNew('line', $DS[$col]);
|
||||
$Plot->setLineColor('red');
|
||||
$Plotarea->setBackgroundColor('blue@0.2');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$Graph->done();
|
||||
?>
|
@@ -0,0 +1,89 @@
|
||||
<?php
|
||||
|
||||
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
|
||||
|
||||
/**
|
||||
* This is a visual test case, testing the setting of the intersection of
|
||||
* a x-axis on a secondary y-axis, and the intersection of a secondary-y-
|
||||
* axis on the x-axis.
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* LICENSE: 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., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*
|
||||
* @category Images
|
||||
* @package Image_Graph
|
||||
* @subpackage Tests
|
||||
* @author Jesper Veggerby <pear.nosey@veggerby.dk>
|
||||
* @copyright Copyright (C) 2003, 2004 Jesper Veggerby Hansen
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version CVS: $Id: intersection_secondary_axis.php,v 1.5 2005/08/03 21:21:58 nosey Exp $
|
||||
* @link http://pear.php.net/package/Image_Graph
|
||||
*/
|
||||
|
||||
require_once 'Image/Graph.php';
|
||||
|
||||
// create the graph
|
||||
$Graph =& Image_Graph::factory('graph', array(800, 600));
|
||||
// add a TrueType font
|
||||
$Font =& $Graph->addNew('ttf_font', 'Verdana');
|
||||
// set the font size to 11 pixels
|
||||
$Font->setSize(7);
|
||||
|
||||
$Graph->setFont($Font);
|
||||
|
||||
// create the plotarea
|
||||
$Graph->add(
|
||||
Image_Graph::vertical(
|
||||
Image_Graph::factory('title', array('Testing Secondary Axis Intersection', 10)),
|
||||
$Matrix = Image_Graph::factory('Image_Graph_Layout_Matrix', array(3, 3)),
|
||||
5
|
||||
)
|
||||
);
|
||||
|
||||
$DS[0] =& Image_Graph::factory('dataset', array(array('0' => 1, '1' => 2, '2' => 0)));
|
||||
$DS[1] =& Image_Graph::factory('dataset', array(array('0' => -1, '1' => 2, '2' => 1)));
|
||||
$DS[2] =& Image_Graph::factory('dataset', array(array('0' => 1, '1' => 3, '2' => 2)));
|
||||
$DS2[0] =& Image_Graph::factory('dataset', array(array('0' => -1, '1' => 2, '2' => 1)));
|
||||
$DS2[1] =& Image_Graph::factory('dataset', array(array('0' => 1, '1' => 3, '2' => 2)));
|
||||
$DS2[2] =& Image_Graph::factory('dataset', array(array('0' => 1, '1' => 2, '2' => 1)));
|
||||
|
||||
for ($row = 0; $row < 3; $row++) {
|
||||
for ($col = 0; $col < 3; $col++) {
|
||||
if (isset($DS[$col])) {
|
||||
$Plotarea =& $Matrix->getEntry($row, $col);
|
||||
$AxisY =& $Plotarea->getAxis(IMAGE_GRAPH_AXIS_Y);
|
||||
$AxisY->setLineColor('silver');
|
||||
|
||||
$AxisX =& $Plotarea->getAxis(IMAGE_GRAPH_AXIS_X);
|
||||
$AxisX->setAxisIntersection(($row < 1 ? 0 : 1), IMAGE_GRAPH_AXIS_Y_SECONDARY);
|
||||
$AxisX->setTitle("Intersect at\ny2=" . ($row < 1 ? '0' : '1'));
|
||||
|
||||
$Plot =& $Plotarea->addNew('line', $DS2[$col]);
|
||||
$Plot->setLineColor('red@0.1');
|
||||
$Plot2 =& $Plotarea->addNew('line', $DS[$col], IMAGE_GRAPH_AXIS_Y_SECONDARY);
|
||||
$Plot2->setLineColor('green');
|
||||
$Plotarea->setBackgroundColor('blue@0.2');
|
||||
|
||||
$AxisYsec =& $Plotarea->getAxis(IMAGE_GRAPH_AXIS_Y_SECONDARY);
|
||||
if ($row > 1) {
|
||||
$AxisYsec->setAxisIntersection(1);
|
||||
$AxisYsec->setTitle("Intersect\nat x=1");
|
||||
} else {
|
||||
$AxisYsec->setTitle("Intersect\nat x=max");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$Graph->done();
|
||||
?>
|
89
includes/pear/Image/tests/axis/inversion.php
Normal file
89
includes/pear/Image/tests/axis/inversion.php
Normal file
@@ -0,0 +1,89 @@
|
||||
<?php
|
||||
|
||||
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
|
||||
|
||||
/**
|
||||
* This is a visual test case, testing axis inversion.
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* LICENSE: 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., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*
|
||||
* @category Images
|
||||
* @package Image_Graph
|
||||
* @subpackage Tests
|
||||
* @author Jesper Veggerby <pear.nosey@veggerby.dk>
|
||||
* @copyright Copyright (C) 2003, 2004 Jesper Veggerby Hansen
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version CVS: $Id: inversion.php,v 1.4 2005/08/03 21:21:58 nosey Exp $
|
||||
* @link http://pear.php.net/package/Image_Graph
|
||||
*/
|
||||
|
||||
require_once 'Image/Graph.php';
|
||||
|
||||
// create the graph
|
||||
$Graph =& Image_Graph::factory('graph', array(600, 600));
|
||||
// add a TrueType font
|
||||
$Font =& $Graph->addNew('ttf_font', 'Verdana');
|
||||
// set the font size to 11 pixels
|
||||
$Font->setSize(7);
|
||||
|
||||
$Graph->setFont($Font);
|
||||
|
||||
// create the plotarea
|
||||
$Graph->add(
|
||||
Image_Graph::vertical(
|
||||
Image_Graph::factory('title', array('Testing Axis Inversion', 10)),
|
||||
$Matrix = Image_Graph::factory('Image_Graph_Layout_Matrix', array(4, 3)),
|
||||
5
|
||||
)
|
||||
);
|
||||
|
||||
$DS[0] =& Image_Graph::factory('dataset', array(array('0' => 1, '1' => 2, '2' => 0)));
|
||||
$DS[1] =& Image_Graph::factory('dataset', array(array('0' => -1, '1' => 2, '2' => 2)));
|
||||
$DS[2] =& Image_Graph::factory('dataset', array(array('0' => 1, '1' => 3, '2' => 2)));
|
||||
|
||||
for ($row = 0; $row < 4; $row++) {
|
||||
for ($col = 0; $col < 3; $col++) {
|
||||
if (isset($DS[$col])) {
|
||||
$Plotarea =& $Matrix->getEntry($row, $col);
|
||||
$AxisY =& $Plotarea->getAxis(IMAGE_GRAPH_AXIS_Y);
|
||||
$AxisX =& $Plotarea->getAxis(IMAGE_GRAPH_AXIS_X);
|
||||
|
||||
if ($row >= 1) {
|
||||
$AxisY->setInverted(true);
|
||||
$AxisY->setTitle('Inverted Y', 'vertical');
|
||||
} else {
|
||||
$AxisY->setTitle('Normal Y', 'vertical');
|
||||
}
|
||||
|
||||
if ($row >= 2) {
|
||||
$AxisX->setInverted(true);
|
||||
$AxisX->setTitle('Inverted X');
|
||||
} else {
|
||||
$AxisX->setTitle('Normal X');
|
||||
}
|
||||
|
||||
if ($row >= 3) {
|
||||
$AxisX->setAxisIntersection('max');
|
||||
$AxisX->setTitle('Inverted X at Bottom (set X intersection)');
|
||||
}
|
||||
|
||||
$Plot =& $Plotarea->addNew('line', $DS[$col]);
|
||||
$Plot->setLineColor('red');
|
||||
$Plotarea->setBackgroundColor('blue@0.2');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$Graph->done();
|
||||
?>
|
99
includes/pear/Image/tests/axis/labelinterval.php
Normal file
99
includes/pear/Image/tests/axis/labelinterval.php
Normal file
@@ -0,0 +1,99 @@
|
||||
<?php
|
||||
|
||||
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
|
||||
|
||||
/**
|
||||
* This is a visual test case, testing setting of label interval's.
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* LICENSE: 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., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*
|
||||
* @category Images
|
||||
* @package Image_Graph
|
||||
* @subpackage Tests
|
||||
* @author Jesper Veggerby <pear.nosey@veggerby.dk>
|
||||
* @copyright Copyright (C) 2003, 2004 Jesper Veggerby Hansen
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version CVS: $Id: labelinterval.php,v 1.4 2005/08/03 21:21:58 nosey Exp $
|
||||
* @link http://pear.php.net/package/Image_Graph
|
||||
*/
|
||||
|
||||
require_once 'Image/Graph.php';
|
||||
|
||||
// create the graph
|
||||
$Graph =& Image_Graph::factory('graph', array(800, 600));
|
||||
// add a TrueType font
|
||||
$Font =& $Graph->addNew('ttf_font', 'Verdana');
|
||||
// set the font size to 7 pixels
|
||||
$Font->setSize(7);
|
||||
|
||||
$Graph->setFont($Font);
|
||||
|
||||
// create the plotarea
|
||||
$Graph->add(
|
||||
Image_Graph::vertical(
|
||||
Image_Graph::factory('title', array('Testing Changing Axis Label Intervals (Bar Charts also test label distance)', 10)),
|
||||
$Matrix = Image_Graph::factory('Image_Graph_Layout_Matrix', array(4, 4)),
|
||||
5
|
||||
)
|
||||
);
|
||||
|
||||
$DS[0] =& Image_Graph::factory('dataset', array(array(0 => 1, 1 => 2, 2 => 0, 3 => 1, 4 => 4)));
|
||||
$DS[1] =& Image_Graph::factory('dataset', array(array('A' => 1, 'B' => 2, 'C' => 0, 'D' => 1, 'E' => 4)));
|
||||
|
||||
$DS[2] =& Image_Graph::factory('dataset', array(array(0 => 1, 1 => 2, 2 => -2, 3 => 1, 4 => 4)));
|
||||
$DS[3] =& Image_Graph::factory('dataset', array(array('A' => 1, 'B' => 2, 'C' => -2, 'D' => 1, 'E' => 4)));
|
||||
|
||||
for ($row = 0; $row < 4; $row++) {
|
||||
for ($col = 0; $col < 4; $col++) {
|
||||
if (isset($DS[$col])) {
|
||||
$Plotarea =& $Matrix->getEntry($row, $col);
|
||||
$AxisY =& $Plotarea->getAxis(IMAGE_GRAPH_AXIS_Y);
|
||||
$AxisX =& $Plotarea->getAxis(IMAGE_GRAPH_AXIS_X);
|
||||
|
||||
if ($row > 2) {
|
||||
$AxisX->setLabelInterval(3);
|
||||
$AxisX->setTitle('"Odd" interval');
|
||||
} elseif ($row > 0) {
|
||||
$AxisX->setLabelInterval(2);
|
||||
$AxisX->setTitle('Changed interval');
|
||||
} else {
|
||||
$AxisX->setTitle('Default interval');
|
||||
}
|
||||
|
||||
if ($row > 2) {
|
||||
$AxisY->setLabelInterval(0.25);
|
||||
$AxisY->setTitle('Small interval', 'vertical');
|
||||
} elseif ($row > 1) {
|
||||
$AxisY->setLabelInterval(2);
|
||||
$AxisY->setTitle('Changed interval', 'vertical');
|
||||
} else {
|
||||
$AxisY->setTitle('Default interval', 'vertical');
|
||||
}
|
||||
|
||||
if ($col > 1) {
|
||||
$Plot =& $Plotarea->addNew('bar', $DS[$col]);
|
||||
$Plot->setLineColor('gray');
|
||||
$Plot->setFillColor('blue@0.2');
|
||||
} else {
|
||||
$Plot =& $Plotarea->addNew('line', $DS[$col]);
|
||||
$Plot->setLineColor('red');
|
||||
}
|
||||
|
||||
$Plotarea->setBackgroundColor('blue@0.2');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$Graph->done();
|
||||
?>
|
84
includes/pear/Image/tests/axis/logarithmic.php
Normal file
84
includes/pear/Image/tests/axis/logarithmic.php
Normal file
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
|
||||
|
||||
/**
|
||||
* This is a visual test case, testing the logarithmic axis.
|
||||
*
|
||||
* PHP versions 4 and 5
|
||||
*
|
||||
* LICENSE: 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., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*
|
||||
* @category Images
|
||||
* @package Image_Graph
|
||||
* @subpackage Tests
|
||||
* @author Jesper Veggerby <pear.nosey@veggerby.dk>
|
||||
* @copyright Copyright (C) 2003, 2004 Jesper Veggerby Hansen
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version CVS: $Id: logarithmic.php,v 1.4 2005/08/03 21:21:58 nosey Exp $
|
||||
* @link http://pear.php.net/package/Image_Graph
|
||||
*/
|
||||
|
||||
require_once 'Image/Graph.php';
|
||||
|
||||
// create the graph
|
||||
$Graph =& Image_Graph::factory('graph', array(600, 400));
|
||||
// add a TrueType font
|
||||
$Font =& $Graph->addNew('ttf_font', 'Verdana');
|
||||
// set the font size to 11 pixels
|
||||
$Font->setSize(7);
|
||||
|
||||
$Graph->setFont($Font);
|
||||
|
||||
// create the plotarea
|
||||
$Graph->add(
|
||||
Image_Graph::vertical(
|
||||
Image_Graph::factory('title', array('Testing Logarihtmic Axis', 10)),
|
||||
$Matrix = Image_Graph::factory('Image_Graph_Layout_Matrix', array(2, 2, false)),
|
||||
5
|
||||
)
|
||||
);
|
||||
|
||||
$Matrix->setEntry(0, 0, Image_Graph::factory('plotarea', array('axis', 'axis')));
|
||||
$Matrix->setEntry(0, 1, Image_Graph::factory('plotarea', array('axis', 'axis_log')));
|
||||
$Matrix->setEntry(1, 0, Image_Graph::factory('plotarea', array('axis_log', 'axis')));
|
||||
$Matrix->setEntry(1, 1, Image_Graph::factory('plotarea', array('axis_log', 'axis_log')));
|
||||
|
||||
function sqr($x) { return $x * $x; }
|
||||
|
||||
$DS =& Image_Graph::factory('function', array(1, 10, 'sqr', 9));
|
||||
|
||||
for ($row = 0; $row < 2; $row++) {
|
||||
for ($col = 0; $col < 2; $col++) {
|
||||
$Plotarea =& $Matrix->getEntry($row, $col);
|
||||
|
||||
$AxisX =& $Plotarea->getAxis(IMAGE_GRAPH_AXIS_X);
|
||||
if (is_a($AxisX, 'Image_Graph_Axis_Logarithmic')) {
|
||||
$AxisX->setTitle('Logarithmic');
|
||||
} else {
|
||||
$AxisX->setTitle('Normal');
|
||||
}
|
||||
|
||||
$AxisY =& $Plotarea->getAxis(IMAGE_GRAPH_AXIS_Y);
|
||||
if (is_a($AxisY, 'Image_Graph_Axis_Logarithmic')) {
|
||||
$AxisY->setTitle('Logarithmic', 'vertical');
|
||||
} else {
|
||||
$AxisY->setTitle('Normal', 'vertical');
|
||||
}
|
||||
|
||||
$Plot =& $Plotarea->addNew('line', $DS);
|
||||
$Plot->setLineColor('red');
|
||||
}
|
||||
}
|
||||
|
||||
$Graph->done();
|
||||
?>
|
Reference in New Issue
Block a user