PHP Classes

File: s1.php3

Recommend this page to a friend!
  Classes of Robbin Zhang   VH Graph   s1.php3   Download  
File: s1.php3
Role: ???
Content type: text/plain
Description: example 1
Class: VH Graph
Author: By
Last change:
Date: 22 years ago
Size: 746 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( "box_showbox"=> true, "grid"=> true, "cubic"=> true, "title_text"=> "Bar Graph", "yaxis_labeltext"=> "Revenue (in million $)", "xaxis_labeltext"=> "Months", "ymarkset" => array(1,2,3), "legend_shift"=> array(-300,10), "size"=> array(400,250) )); phpdata($a); phpdraw("bargraph",array( "drawsets" => array(1,2), "legend" => array("First Half Revenue", "Last Year Result"), "barspacing"=> 8, "showvalue"=> false )); phpshow("out.png"); ?>