Login   Register  
PHP Classes
elePHPant
Icontem

File: s4.php3

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Robbin Zhang  >  VH Graph  >  s4.php3  >  Download  
File: s4.php3
Role: ???
Content type: text/plain
Description: example 4
Class: VH Graph
Author: By
Last change:
Date: 2001-06-12 09:58
Size: 393 bytes
 

Contents

Class file image Download
<?php

include('../class.graph1');

$a = array(
     array("Jan.","Feb.","March","April","May","June"),
     array(1.3,1.8,2.3,1.8,1.9,2.4),
     array(1.0,2.1,2.0,1.3,2.3,2.0) );

phpplot(array(
    "cubic"=> true,
    "title_text"=> "Pie Graph",
    "size"=> array(400,250) ));

phpdata($a);

phpdraw("piegraph",array( "drawsets" => array(1)));

phpshow('out.png');


?>