summaryrefslogtreecommitdiffstats
path: root/notFinishedCode/pChart2.1.2/examples/example.radar.php
diff options
context:
space:
mode:
Diffstat (limited to 'notFinishedCode/pChart2.1.2/examples/example.radar.php')
-rw-r--r--notFinishedCode/pChart2.1.2/examples/example.radar.php67
1 files changed, 0 insertions, 67 deletions
diff --git a/notFinishedCode/pChart2.1.2/examples/example.radar.php b/notFinishedCode/pChart2.1.2/examples/example.radar.php
deleted file mode 100644
index c7bd194..0000000
--- a/notFinishedCode/pChart2.1.2/examples/example.radar.php
+++ /dev/null
@@ -1,67 +0,0 @@
-<?php
- /* CAT:Polar and radars */
-
- /* pChart library inclusions */
- include("../class/pData.class.php");
- include("../class/pDraw.class.php");
- include("../class/pRadar.class.php");
- include("../class/pImage.class.php");
-
- /* Create and populate the pData object */
- $MyData = new pData();
- $MyData->addPoints(array(40,20,15,10,8,4),"ScoreA");
- $MyData->addPoints(array(8,10,12,20,30,15),"ScoreB");
- $MyData->addPoints(array(4,8,16,32,16,8),"ScoreC");
- $MyData->setSerieDescription("ScoreA","Application A");
- $MyData->setSerieDescription("ScoreB","Application B");
- $MyData->setSerieDescription("ScoreC","Application C");
-
- /* Define the absissa serie */
- $MyData->addPoints(array("Size","Speed","Reliability","Functionalities","Ease of use","Weight"),"Labels");
- $MyData->setAbscissa("Labels");
-
- /* Create the pChart object */
- $myPicture = new pImage(700,230,$MyData);
-
- /* Draw a solid background */
- $Settings = array("R"=>179, "G"=>217, "B"=>91, "Dash"=>1, "DashR"=>199, "DashG"=>237, "DashB"=>111);
- $myPicture->drawFilledRectangle(0,0,700,230,$Settings);
-
- /* Overlay some gradient areas */
- $Settings = array("StartR"=>194, "StartG"=>231, "StartB"=>44, "EndR"=>43, "EndG"=>107, "EndB"=>58, "Alpha"=>50);
- $myPicture->drawGradientArea(0,0,700,230,DIRECTION_VERTICAL,$Settings);
- $myPicture->drawGradientArea(0,0,700,20,DIRECTION_VERTICAL,array("StartR"=>0,"StartG"=>0,"StartB"=>0,"EndR"=>50,"EndG"=>50,"EndB"=>50,"Alpha"=>100));
-
- /* Add a border to the picture */
- $myPicture->drawRectangle(0,0,699,229,array("R"=>0,"G"=>0,"B"=>0));
-
- /* Write the picture title */
- $myPicture->setFontProperties(array("FontName"=>"../fonts/Silkscreen.ttf","FontSize"=>6));
- $myPicture->drawText(10,13,"pRadar - Draw radar charts",array("R"=>255,"G"=>255,"B"=>255));
-
- /* Set the default font properties */
- $myPicture->setFontProperties(array("FontName"=>"../fonts/Forgotte.ttf","FontSize"=>10,"R"=>80,"G"=>80,"B"=>80));
-
- /* Enable shadow computing */
- $myPicture->setShadow(TRUE,array("X"=>1,"Y"=>1,"R"=>0,"G"=>0,"B"=>0,"Alpha"=>10));
-
- /* Create the pRadar object */
- $SplitChart = new pRadar();
-
- /* Draw a radar chart */
- $myPicture->setGraphArea(10,25,300,225);
- $Options = array("Layout"=>RADAR_LAYOUT_STAR,"BackgroundGradient"=>array("StartR"=>255,"StartG"=>255,"StartB"=>255,"StartAlpha"=>100,"EndR"=>207,"EndG"=>227,"EndB"=>125,"EndAlpha"=>50), "FontName"=>"../fonts/pf_arma_five.ttf","FontSize"=>6);
- $SplitChart->drawRadar($myPicture,$MyData,$Options);
-
- /* Draw a radar chart */
- $myPicture->setGraphArea(390,25,690,225);
- $Options = array("Layout"=>RADAR_LAYOUT_CIRCLE,"LabelPos"=>RADAR_LABELS_HORIZONTAL,"BackgroundGradient"=>array("StartR"=>255,"StartG"=>255,"StartB"=>255,"StartAlpha"=>50,"EndR"=>32,"EndG"=>109,"EndB"=>174,"EndAlpha"=>30), "FontName"=>"../fonts/pf_arma_five.ttf","FontSize"=>6);
- $SplitChart->drawRadar($myPicture,$MyData,$Options);
-
- /* Write the chart legend */
- $myPicture->setFontProperties(array("FontName"=>"../fonts/pf_arma_five.ttf","FontSize"=>6));
- $myPicture->drawLegend(235,205,array("Style"=>LEGEND_BOX,"Mode"=>LEGEND_HORIZONTAL));
-
- /* Render the picture (choose the best way) */
- $myPicture->autoOutput("pictures/example.radar.png");
-?> \ No newline at end of file