Sophie

Sophie

distrib > Fedora > 13 > i386 > media > updates > by-pkgid > db91bd759e5a654d607a666031e82ded > files > 91

php-pear-Image-Graph-0.8.0-1.fc13.noarch.rpm

<?php
/**
 * Usage example for Image_Graph.
 * 
 * Main purpose: 
 * Demonstrate how to use simple graph
 * 
 * Other: 
 * None specific
 * 
 * $Id: simple_graph.php 191717 2005-07-28 12:05:16Z nosey $
 * 
 * @package Image_Graph
 * @author Jesper Veggerby <pear.nosey@veggerby.dk>
 */

include('Image/Graph/Simple.php');    

$Data = array(
    'Dogs' => 3,
    'Cats' => 1,
    'Parrots' => 4,
    'Mice' => 5
);

// create the graph
$Graph =& Image_Graph_Simple::factory( 
    400, 
    300,
    'Image_Graph_Plot_Smoothed_Area',
    $Data,
    'Simple Graph Example',
    'gray',
    'blue@0.2',
    'Verdana'
);
			 
// output the Graph
$Graph->done();
?>