<?php
/*----------------------------------------------------------*/
/*                                                          */
/* Very simple PHP script to demonstrate how data can be    */
/* supplied to the graph from a server side process.        */
/*                                                          */
/* In reality this script would be extended to dynamically  */
/* acquire the data from a source such as a database.       */
/*                                                          */
/*----------------------------------------------------------*/

print "Width:                330\n";
print "Height:               320\n";
print "3D:                   false\n";
print "depth3D:              10\n";
print "autoscale:            true\n";
print "chartScale:           10000\n";
print "chartStartY:          0\n";
print "gridbgcolor:          #EEEEFF\n";
print "floorColor:           #AAAABB\n";
print "series1:              #3333CC|5|6|true|Product X\n";
print "series2:              #FF9900|4|6|true|Product Y\n";
print "series3:              #CC33CC|3|6|true|Product Z\n";
print "ndecplaces:           0\n";
print "legend:               true\n";
print "LegendStyle:          Horizontal\n";
print "legendfont:           Arial,N,10\n";
print "labelOrientation:     Horizontal\n";
print "title:                Value of Sales|-1,-1|Arial,B,14|#5555FF\n";
print "xtitle:               2004|-1,-1|Arial,B,12|#5555FF\n";
print "ylabel_pre:           $\n";
print "ylabel_font:          Arial,N,10\n";
print "popup_pre:            $\n";
print "popupbgcolor:         #FFEEAA\n";
print "xlabel_font:          Arial,N,10\n";
print "label1:               Jan\n";
print "label2:               Feb\n";
print "label3:               Mar\n";
print "label4:               Apr\n";
print "label5:               May\n";
print "label6:               Jun\n";
print "label7:               Jul\n";
print "label8:               Aug\n";
print "label9:               Sep\n";
print "label10:              Oct\n";
print "label11:              Nov\n";
print "label12:              Dec\n";

?>