summaryrefslogtreecommitdiffstats
path: root/notFinishedCode/pChart2.1.2/examples/example.drawSimple.php
diff options
context:
space:
mode:
Diffstat (limited to 'notFinishedCode/pChart2.1.2/examples/example.drawSimple.php')
-rw-r--r--notFinishedCode/pChart2.1.2/examples/example.drawSimple.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/notFinishedCode/pChart2.1.2/examples/example.drawSimple.php b/notFinishedCode/pChart2.1.2/examples/example.drawSimple.php
new file mode 100644
index 0000000..7a4f566
--- /dev/null
+++ b/notFinishedCode/pChart2.1.2/examples/example.drawSimple.php
@@ -0,0 +1,42 @@
+<?php
+ /* CAT:Misc */
+
+ /* pChart library inclusions */
+ include("../class/pData.class.php");
+ include("../class/pDraw.class.php");
+ include("../class/pImage.class.php");
+
+ /* Create and populate the pData object */
+ $MyData = new pData();
+ $MyData->addPoints(array(2,7,5,18,19,22,23,25,22,12,10,10),"DEFCA");
+ $MyData->setAxisName(0,"$ Incomes");
+ $MyData->setAxisDisplay(0,AXIS_FORMAT_CURRENCY);
+ $MyData->addPoints(array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aou","Sep","Oct","Nov","Dec"),"Labels");
+ $MyData->setSerieDescription("Labels","Months");
+ $MyData->setAbscissa("Labels");
+ $MyData->setPalette("DEFCA",array("R"=>55,"G"=>91,"B"=>127));
+
+ /* Create the pChart object */
+ $myPicture = new pImage(700,230,$MyData);
+ $myPicture->drawGradientArea(0,0,700,230,DIRECTION_VERTICAL,array("StartR"=>220,"StartG"=>220,"StartB"=>220,"EndR"=>255,"EndG"=>255,"EndB"=>255,"Alpha"=>100));
+ $myPicture->drawRectangle(0,0,699,229,array("R"=>200,"G"=>200,"B"=>200));
+
+ /* Write the picture title */
+ $myPicture->setFontProperties(array("FontName"=>"../fonts/Forgotte.ttf","FontSize"=>11));
+ $myPicture->drawText(60,35,"2k9 Average Incomes",array("FontSize"=>20,"Align"=>TEXT_ALIGN_BOTTOMLEFT));
+
+ /* Do some cosmetic and draw the chart */
+ $myPicture->setGraphArea(60,40,670,190);
+ $myPicture->drawFilledRectangle(60,40,670,190,array("R"=>255,"G"=>255,"B"=>255,"Surrounding"=>-200,"Alpha"=>10));
+ $myPicture->drawScale(array("GridR"=>180,"GridG"=>180,"GridB"=>180));
+ $myPicture->setShadow(TRUE,array("X"=>2,"Y"=>2,"R"=>0,"G"=>0,"B"=>0,"Alpha"=>10));
+ $myPicture->setFontProperties(array("FontName"=>"../fonts/pf_arma_five.ttf","FontSize"=>6));
+ $myPicture->drawSplineChart();
+ $myPicture->setShadow(FALSE);
+
+ /* Write the chart legend */
+ $myPicture->drawLegend(643,210,array("Style"=>LEGEND_NOBORDER,"Mode"=>LEGEND_HORIZONTAL));
+
+ /* Render the picture (choose the best way) */
+ $myPicture->autoOutput("pictures/example.drawSimple.png");
+?> \ No newline at end of file