Heuristic ranking analysis
[contractdashboard.git] / lib / pChart2.1.0 / examples / example.radar.labels.php
blob:a/lib/pChart2.1.0/examples/example.radar.labels.php -> blob:b/lib/pChart2.1.0/examples/example.radar.labels.php
--- a/lib/pChart2.1.0/examples/example.radar.labels.php
+++ b/lib/pChart2.1.0/examples/example.radar.labels.php
@@ -1,1 +1,50 @@
-
+<?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(4,4,10,10,4,4,15,15,4,4,10,10,4,4,15,15,4,4,10,10,4,4,15,15),"ScoreA");  

+ $MyData->setSerieDescription("ScoreA","Application A");

+ $MyData->setPalette("ScoreA",array("R"=>150,"G"=>5,"B"=>217));

+

+ /* Define the absissa serie */

+ $MyData->addPoints(array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24),"Time");

+ $MyData->setAbscissa("Time");

+

+ /* Create the pChart object */

+ $myPicture = new pImage(300,300,$MyData);

+ $myPicture->drawGradientArea(0,0,300,300,DIRECTION_VERTICAL,array("StartR"=>200,"StartG"=>200,"StartB"=>200,"EndR"=>240,"EndG"=>240,"EndB"=>240,"Alpha"=>100));

+ $myPicture->drawGradientArea(0,0,300,20,DIRECTION_HORIZONTAL,array("StartR"=>30,"StartG"=>30,"StartB"=>30,"EndR"=>100,"EndG"=>100,"EndB"=>100,"Alpha"=>100));

+ $myPicture->drawLine(0,20,300,20,array("R"=>255,"G"=>255,"B"=>255));

+ $RectangleSettings = array("R"=>180,"G"=>180,"B"=>180,"Alpha"=>100);

+

+ /* Add a border to the picture */

+ $myPicture->drawRectangle(0,0,299,299,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"=>2,"Y"=>2,"R"=>0,"G"=>0,"B"=>0,"Alpha"=>10));

+

+ /* Create the pRadar object */ 

+ $SplitChart = new pRadar();

+

+ /* Draw a radar chart */ 

+ $myPicture->setGraphArea(10,25,290,290);

+ $Options = array("SkipLabels"=>3,"LabelMiddle"=>TRUE,"Layout"=>RADAR_LAYOUT_STAR,"BackgroundGradient"=>array("StartR"=>255,"StartG"=>255,"StartB"=>255,"StartAlpha"=>100,"EndR"=>207,"EndG"=>227,"EndB"=>125,"EndAlpha"=>50));

+ $SplitChart->drawRadar($myPicture,$MyData,$Options);

+

+ /* Render the picture (choose the best way) */

+ $myPicture->autoOutput("pictures/example.radar.labels.png");

+?>