| 1 | <?php
 | 
|---|
| 2 | //=======================================================================
 | 
|---|
| 3 | // File:        JPGRAPH_LEGEND.INC.PHP
 | 
|---|
| 4 | // Description: Class to handle the legend box in the graph that gives
 | 
|---|
| 5 | //              names on the data series. The number of rows and columns
 | 
|---|
| 6 | //              in the legend are user specifyable.
 | 
|---|
| 7 | // Created:     2001-01-08 (Refactored to separate file 2008-08-01)
 | 
|---|
| 8 | // Ver:         $Id: jpgraph_legend.inc.php 1926 2010-01-11 16:33:07Z ljp $
 | 
|---|
| 9 | //
 | 
|---|
| 10 | // Copyright (c) Asial Corporation. All rights reserved.
 | 
|---|
| 11 | //========================================================================
 | 
|---|
| 12 | 
 | 
|---|
| 13 | DEFINE('_DEFAULT_LPM_SIZE',8); // Default Legend Plot Mark size
 | 
|---|
| 14 | 
 | 
|---|
| 15 | 
 | 
|---|
| 16 | //===================================================
 | 
|---|
| 17 | // CLASS Legend
 | 
|---|
| 18 | // Description: Responsible for drawing the box containing
 | 
|---|
| 19 | // all the legend text for the graph
 | 
|---|
| 20 | //===================================================
 | 
|---|
| 21 | 
 | 
|---|
| 22 | class Legend {
 | 
|---|
| 23 |     public $txtcol=array();
 | 
|---|
| 24 |     public $font_family=FF_DEFAULT,$font_style=FS_NORMAL,$font_size=8; // old. 12
 | 
|---|
| 25 |     private $color=array(120,120,120); // Default frame color
 | 
|---|
| 26 |     private $fill_color=array(245,245,245); // Default fill color
 | 
|---|
| 27 |     private $shadow=false; // Shadow around legend "box"
 | 
|---|
| 28 |     private $shadow_color='darkgray';
 | 
|---|
| 29 |     private $mark_abs_hsize=_DEFAULT_LPM_SIZE,$mark_abs_vsize=_DEFAULT_LPM_SIZE;
 | 
|---|
| 30 |     private $xmargin=10,$ymargin=0,$shadow_width=2;
 | 
|---|
| 31 |     private $xlmargin=4;
 | 
|---|
| 32 |     private $ylinespacing=5;
 | 
|---|
| 33 |     
 | 
|---|
| 34 |      // We need a separate margin since the baseline of the last text would coincide with the bottom otherwise
 | 
|---|
| 35 |     private $ybottom_margin = 8;
 | 
|---|
| 36 |     
 | 
|---|
| 37 |     private $xpos=0.05, $ypos=0.15, $xabspos=-1, $yabspos=-1;
 | 
|---|
| 38 |     private $halign="right", $valign="top";
 | 
|---|
| 39 |     private $font_color='black';
 | 
|---|
| 40 |     private $hide=false,$layout_n=1;
 | 
|---|
| 41 |     private $weight=1,$frameweight=1;
 | 
|---|
| 42 |     private $csimareas='';
 | 
|---|
| 43 |     private $reverse = false ;
 | 
|---|
| 44 |     private $bkg_gradtype=-1, $bkg_gradfrom='lightgray', $bkg_gradto='gray';
 | 
|---|
| 45 | 
 | 
|---|
| 46 |     //---------------
 | 
|---|
| 47 |     // CONSTRUCTOR
 | 
|---|
| 48 |     function __construct() {
 | 
|---|
| 49 |         // Empty
 | 
|---|
| 50 |     }
 | 
|---|
| 51 |     //---------------
 | 
|---|
| 52 |     // PUBLIC METHODS
 | 
|---|
| 53 |     function Hide($aHide=true) {
 | 
|---|
| 54 |         $this->hide=$aHide;
 | 
|---|
| 55 |     }
 | 
|---|
| 56 | 
 | 
|---|
| 57 |     function SetHColMargin($aXMarg) {
 | 
|---|
| 58 |         $this->xmargin = $aXMarg;
 | 
|---|
| 59 |     }
 | 
|---|
| 60 | 
 | 
|---|
| 61 |     function SetVColMargin($aSpacing) {
 | 
|---|
| 62 |         $this->ylinespacing = $aSpacing ;
 | 
|---|
| 63 |     }
 | 
|---|
| 64 | 
 | 
|---|
| 65 |     function SetLeftMargin($aXMarg) {
 | 
|---|
| 66 |         $this->xlmargin = $aXMarg;
 | 
|---|
| 67 |     }
 | 
|---|
| 68 | 
 | 
|---|
| 69 |     // Synonym
 | 
|---|
| 70 |     function SetLineSpacing($aSpacing) {
 | 
|---|
| 71 |         $this->ylinespacing = $aSpacing ;
 | 
|---|
| 72 |     }
 | 
|---|
| 73 | 
 | 
|---|
| 74 |     function SetShadow($aShow='gray',$aWidth=4) {
 | 
|---|
| 75 |         if( is_string($aShow) ) {
 | 
|---|
| 76 |             $this->shadow_color = $aShow;
 | 
|---|
| 77 |             $this->shadow=true;
 | 
|---|
| 78 |         }
 | 
|---|
| 79 |         else {
 | 
|---|
| 80 |             $this->shadow = $aShow;
 | 
|---|
| 81 |         }
 | 
|---|
| 82 |         $this->shadow_width = $aWidth;
 | 
|---|
| 83 |     }
 | 
|---|
| 84 | 
 | 
|---|
| 85 |     function SetMarkAbsSize($aSize) {
 | 
|---|
| 86 |         $this->mark_abs_vsize = $aSize ;
 | 
|---|
| 87 |         $this->mark_abs_hsize = $aSize ;
 | 
|---|
| 88 |     }
 | 
|---|
| 89 | 
 | 
|---|
| 90 |     function SetMarkAbsVSize($aSize) {
 | 
|---|
| 91 |         $this->mark_abs_vsize = $aSize ;
 | 
|---|
| 92 |     }
 | 
|---|
| 93 | 
 | 
|---|
| 94 |     function SetMarkAbsHSize($aSize) {
 | 
|---|
| 95 |         $this->mark_abs_hsize = $aSize ;
 | 
|---|
| 96 |     }
 | 
|---|
| 97 | 
 | 
|---|
| 98 |     function SetLineWeight($aWeight) {
 | 
|---|
| 99 |         $this->weight = $aWeight;
 | 
|---|
| 100 |     }
 | 
|---|
| 101 | 
 | 
|---|
| 102 |     function SetFrameWeight($aWeight) {
 | 
|---|
| 103 |         $this->frameweight = $aWeight;
 | 
|---|
| 104 |     }
 | 
|---|
| 105 | 
 | 
|---|
| 106 |     function SetLayout($aDirection=LEGEND_VERT) {
 | 
|---|
| 107 |         $this->layout_n = $aDirection==LEGEND_VERT ? 1 : 99 ;
 | 
|---|
| 108 |     }
 | 
|---|
| 109 | 
 | 
|---|
| 110 |     function SetColumns($aCols) {
 | 
|---|
| 111 |         $this->layout_n = $aCols ;
 | 
|---|
| 112 |     }
 | 
|---|
| 113 | 
 | 
|---|
| 114 |     function SetReverse($f=true) {
 | 
|---|
| 115 |         $this->reverse = $f ;
 | 
|---|
| 116 |     }
 | 
|---|
| 117 | 
 | 
|---|
| 118 |     // Set color on frame around box
 | 
|---|
| 119 |     function SetColor($aFontColor,$aColor='black') {
 | 
|---|
| 120 |         $this->font_color=$aFontColor;
 | 
|---|
| 121 |         $this->color=$aColor;
 | 
|---|
| 122 |     }
 | 
|---|
| 123 | 
 | 
|---|
| 124 |     function SetFont($aFamily,$aStyle=FS_NORMAL,$aSize=10) {
 | 
|---|
| 125 |         $this->font_family = $aFamily;
 | 
|---|
| 126 |         $this->font_style = $aStyle;
 | 
|---|
| 127 |         $this->font_size = $aSize;
 | 
|---|
| 128 |     }
 | 
|---|
| 129 | 
 | 
|---|
| 130 |     function SetPos($aX,$aY,$aHAlign='right',$aVAlign='top') {
 | 
|---|
| 131 |         $this->Pos($aX,$aY,$aHAlign,$aVAlign);
 | 
|---|
| 132 |     }
 | 
|---|
| 133 | 
 | 
|---|
| 134 |     function SetAbsPos($aX,$aY,$aHAlign='right',$aVAlign='top') {
 | 
|---|
| 135 |         $this->xabspos=$aX;
 | 
|---|
| 136 |         $this->yabspos=$aY;
 | 
|---|
| 137 |         $this->halign=$aHAlign;
 | 
|---|
| 138 |         $this->valign=$aVAlign;
 | 
|---|
| 139 |     }
 | 
|---|
| 140 | 
 | 
|---|
| 141 |     function Pos($aX,$aY,$aHAlign='right',$aVAlign='top') {
 | 
|---|
| 142 |         if( !($aX<1 && $aY<1) ) {
 | 
|---|
| 143 |             JpGraphError::RaiseL(25120);//(" Position for legend must be given as percentage in range 0-1");
 | 
|---|
| 144 |         }
 | 
|---|
| 145 |         $this->xpos=$aX;
 | 
|---|
| 146 |         $this->ypos=$aY;
 | 
|---|
| 147 |         $this->halign=$aHAlign;
 | 
|---|
| 148 |         $this->valign=$aVAlign;
 | 
|---|
| 149 |     }
 | 
|---|
| 150 | 
 | 
|---|
| 151 |     function SetFillColor($aColor) {
 | 
|---|
| 152 |         $this->fill_color=$aColor;
 | 
|---|
| 153 |     }
 | 
|---|
| 154 | 
 | 
|---|
| 155 |     function Clear() {
 | 
|---|
| 156 |         $this->txtcol = array();
 | 
|---|
| 157 |     }
 | 
|---|
| 158 | 
 | 
|---|
| 159 |     function Add($aTxt,$aColor,$aPlotmark='',$aLinestyle=0,$csimtarget='',$csimalt='',$csimwintarget='') {
 | 
|---|
| 160 |         $this->txtcol[]=array($aTxt,$aColor,$aPlotmark,$aLinestyle,$csimtarget,$csimalt,$csimwintarget);
 | 
|---|
| 161 |     }
 | 
|---|
| 162 | 
 | 
|---|
| 163 |     function GetCSIMAreas() {
 | 
|---|
| 164 |         return $this->csimareas;
 | 
|---|
| 165 |     }
 | 
|---|
| 166 | 
 | 
|---|
| 167 |     function SetBackgroundGradient($aFrom='navy',$aTo='silver',$aGradType=2) {
 | 
|---|
| 168 |         $this->bkg_gradtype=$aGradType;
 | 
|---|
| 169 |         $this->bkg_gradfrom = $aFrom;
 | 
|---|
| 170 |         $this->bkg_gradto = $aTo;
 | 
|---|
| 171 |     }
 | 
|---|
| 172 | 
 | 
|---|
| 173 |     function HasItems() {
 | 
|---|
| 174 |         return (boolean)(count($this->txtcol));
 | 
|---|
| 175 |     }
 | 
|---|
| 176 | 
 | 
|---|
| 177 |     function Stroke($aImg) {
 | 
|---|
| 178 |         // Constant
 | 
|---|
| 179 |         $fillBoxFrameWeight=1;
 | 
|---|
| 180 | 
 | 
|---|
| 181 |         if( $this->hide ) return;
 | 
|---|
| 182 | 
 | 
|---|
| 183 |         $aImg->SetFont($this->font_family,$this->font_style,$this->font_size);
 | 
|---|
| 184 | 
 | 
|---|
| 185 |         if( $this->reverse ) {
 | 
|---|
| 186 |             $this->txtcol = array_reverse($this->txtcol);
 | 
|---|
| 187 |         }
 | 
|---|
| 188 | 
 | 
|---|
| 189 |         $n=count($this->txtcol);
 | 
|---|
| 190 |         if( $n == 0 ) return;
 | 
|---|
| 191 | 
 | 
|---|
| 192 |         // Find out the max width and height of each column to be able
 | 
|---|
| 193 |         // to size the legend box.
 | 
|---|
| 194 |         $numcolumns = ($n > $this->layout_n ? $this->layout_n : $n);
 | 
|---|
| 195 |         for( $i=0; $i < $numcolumns; ++$i ) {
 | 
|---|
| 196 |             $colwidth[$i] = $aImg->GetTextWidth($this->txtcol[$i][0]) +
 | 
|---|
| 197 |                             2*$this->xmargin + 2*$this->mark_abs_hsize;
 | 
|---|
| 198 |             $colheight[$i] = 0;
 | 
|---|
| 199 | 
 | 
|---|
| 200 |         }
 | 
|---|
| 201 | 
 | 
|---|
| 202 |         // Find our maximum height in each row
 | 
|---|
| 203 |         $rows = 0 ; $rowheight[0] = 0;
 | 
|---|
| 204 |         for( $i=0; $i < $n; ++$i ) {
 | 
|---|
| 205 |             $h = max($this->mark_abs_vsize,$aImg->GetTextHeight($this->txtcol[$i][0]))+$this->ylinespacing;
 | 
|---|
| 206 | 
 | 
|---|
| 207 |             // Makes sure we always have a minimum of 1/4 (1/2 on each side) of the mark as space
 | 
|---|
| 208 |             // between two vertical legend entries
 | 
|---|
| 209 |             //$h = round(max($h,$this->mark_abs_vsize+$this->ymargin));
 | 
|---|
| 210 |             //echo "Textheight #$i: tetxheight=".$aImg->GetTextHeight($this->txtcol[$i][0]).', ';
 | 
|---|
| 211 |             //echo "h=$h ({$this->mark_abs_vsize},{$this->ymargin})<br>";
 | 
|---|
| 212 |             if( $i % $numcolumns == 0 ) {
 | 
|---|
| 213 |                 $rows++;
 | 
|---|
| 214 |                 $rowheight[$rows-1] = 0;
 | 
|---|
| 215 |             }
 | 
|---|
| 216 |             $rowheight[$rows-1] = max($rowheight[$rows-1],$h)+1;
 | 
|---|
| 217 |         }
 | 
|---|
| 218 | 
 | 
|---|
| 219 |         $abs_height = 0;
 | 
|---|
| 220 |         for( $i=0; $i < $rows; ++$i ) {
 | 
|---|
| 221 |             $abs_height += $rowheight[$i] ;
 | 
|---|
| 222 |         }
 | 
|---|
| 223 | 
 | 
|---|
| 224 |         // Make sure that the height is at least as high as mark size + ymargin
 | 
|---|
| 225 |         $abs_height = max($abs_height,$this->mark_abs_vsize);
 | 
|---|
| 226 |         $abs_height += $this->ybottom_margin; 
 | 
|---|
| 227 | 
 | 
|---|
| 228 |         // Find out the maximum width in each column
 | 
|---|
| 229 |         for( $i=$numcolumns; $i < $n; ++$i ) {
 | 
|---|
| 230 |             $colwidth[$i % $numcolumns] = max(
 | 
|---|
| 231 |                 $aImg->GetTextWidth($this->txtcol[$i][0])+2*$this->xmargin+2*$this->mark_abs_hsize,
 | 
|---|
| 232 |                 $colwidth[$i % $numcolumns]);
 | 
|---|
| 233 |         }
 | 
|---|
| 234 | 
 | 
|---|
| 235 |         // Get the total width
 | 
|---|
| 236 |         $mtw = 0;
 | 
|---|
| 237 |         for( $i=0; $i < $numcolumns; ++$i ) {
 | 
|---|
| 238 |             $mtw += $colwidth[$i] ;
 | 
|---|
| 239 |         }
 | 
|---|
| 240 | 
 | 
|---|
| 241 |         // remove the last rows interpace margin (since there is no next row)
 | 
|---|
| 242 |         $abs_height -= $this->ylinespacing;
 | 
|---|
| 243 | 
 | 
|---|
| 244 | 
 | 
|---|
| 245 |         // Find out maximum width we need for legend box
 | 
|---|
| 246 |         $abs_width = $mtw+$this->xlmargin+($numcolumns-1)*$this->mark_abs_hsize;
 | 
|---|
| 247 | 
 | 
|---|
| 248 |         if( $this->xabspos === -1  && $this->yabspos === -1 ) {
 | 
|---|
| 249 |             $this->xabspos = $this->xpos*$aImg->width ;
 | 
|---|
| 250 |             $this->yabspos = $this->ypos*$aImg->height ;
 | 
|---|
| 251 |         }
 | 
|---|
| 252 | 
 | 
|---|
| 253 |         // Positioning of the legend box
 | 
|---|
| 254 |         if( $this->halign == 'left' ) {
 | 
|---|
| 255 |                 $xp = $this->xabspos;
 | 
|---|
| 256 |         }
 | 
|---|
| 257 |         elseif( $this->halign == 'center' ) {
 | 
|---|
| 258 |                 $xp = $this->xabspos - $abs_width/2;
 | 
|---|
| 259 |         }
 | 
|---|
| 260 |         else {
 | 
|---|
| 261 |                 $xp = $aImg->width - $this->xabspos - $abs_width;
 | 
|---|
| 262 |         }
 | 
|---|
| 263 | 
 | 
|---|
| 264 |         $yp=$this->yabspos;
 | 
|---|
| 265 |         if( $this->valign == 'center' ) {
 | 
|---|
| 266 |                 $yp-=$abs_height/2;
 | 
|---|
| 267 |         }
 | 
|---|
| 268 |         elseif( $this->valign == 'bottom' ) {
 | 
|---|
| 269 |                 $yp-=$abs_height;
 | 
|---|
| 270 |         }
 | 
|---|
| 271 | 
 | 
|---|
| 272 |         // Stroke legend box
 | 
|---|
| 273 |         $aImg->SetColor($this->color);
 | 
|---|
| 274 |         $aImg->SetLineWeight($this->frameweight);
 | 
|---|
| 275 |         $aImg->SetLineStyle('solid');
 | 
|---|
| 276 | 
 | 
|---|
| 277 |         if( $this->shadow ) {
 | 
|---|
| 278 |                 $aImg->ShadowRectangle($xp,$yp,
 | 
|---|
| 279 |                                    $xp+$abs_width+$this->shadow_width+2,
 | 
|---|
| 280 |                                    $yp+$abs_height+$this->shadow_width+2,
 | 
|---|
| 281 |                                    $this->fill_color,$this->shadow_width+2,$this->shadow_color);
 | 
|---|
| 282 |         }
 | 
|---|
| 283 |         else {
 | 
|---|
| 284 |             $aImg->SetColor($this->fill_color);
 | 
|---|
| 285 |             $aImg->FilledRectangle($xp,$yp,$xp+$abs_width,$yp+$abs_height);
 | 
|---|
| 286 |             $aImg->SetColor($this->color);
 | 
|---|
| 287 |             $aImg->Rectangle($xp,$yp,$xp+$abs_width,$yp+$abs_height);
 | 
|---|
| 288 |         }
 | 
|---|
| 289 | 
 | 
|---|
| 290 |         if( $this->bkg_gradtype >= 0 ) {
 | 
|---|
| 291 |             $grad = new Gradient($aImg);
 | 
|---|
| 292 |             $grad->FilledRectangle($xp+1, $yp+1,
 | 
|---|
| 293 |                                    $xp+$abs_width-3, $yp+$abs_height-3,
 | 
|---|
| 294 |                                    $this->bkg_gradfrom, $this->bkg_gradto,
 | 
|---|
| 295 |                                    $this->bkg_gradtype);
 | 
|---|
| 296 |         }
 | 
|---|
| 297 | 
 | 
|---|
| 298 |         // x1,y1 is the position for the legend marker + text
 | 
|---|
| 299 |         // The vertical position is the baseline position for the text
 | 
|---|
| 300 |         // and every marker is adjusted acording to that.
 | 
|---|
| 301 | 
 | 
|---|
| 302 |         // For multiline texts this get more complicated.
 | 
|---|
| 303 | 
 | 
|---|
| 304 |         $x1 = $xp + $this->xlmargin;
 | 
|---|
| 305 |         $y1 = $yp + $rowheight[0] - $this->ylinespacing + 2 ; // The ymargin is included in rowheight
 | 
|---|
| 306 | 
 | 
|---|
| 307 |         // Now, y1 is the bottom vertical position of the first legend, i.e if
 | 
|---|
| 308 |         // the legend has multiple lines it is the bottom line.
 | 
|---|
| 309 | 
 | 
|---|
| 310 |         $grad = new Gradient($aImg);
 | 
|---|
| 311 |         $patternFactory = null;
 | 
|---|
| 312 | 
 | 
|---|
| 313 |         // Now stroke each legend in turn
 | 
|---|
| 314 |         // Each plot has added the following information to  the legend
 | 
|---|
| 315 |         // p[0] = Legend text
 | 
|---|
| 316 |         // p[1] = Color,
 | 
|---|
| 317 |         // p[2] = For markers a reference to the PlotMark object
 | 
|---|
| 318 |         // p[3] = For lines the line style, for gradient the negative gradient style
 | 
|---|
| 319 |         // p[4] = CSIM target
 | 
|---|
| 320 |         // p[5] = CSIM Alt text
 | 
|---|
| 321 |         $i = 1 ; $row = 0;
 | 
|---|
| 322 |         foreach($this->txtcol as $p) {
 | 
|---|
| 323 | 
 | 
|---|
| 324 |             // STROKE DEBUG BOX
 | 
|---|
| 325 |             if( _JPG_DEBUG ) {
 | 
|---|
| 326 |                 $aImg->SetLineWeight(1);
 | 
|---|
| 327 |                 $aImg->SetColor('red');
 | 
|---|
| 328 |                 $aImg->SetLineStyle('solid');
 | 
|---|
| 329 |                 $aImg->Rectangle($x1,$y1,$xp+$abs_width-1,$y1-$rowheight[$row]);
 | 
|---|
| 330 |             }
 | 
|---|
| 331 | 
 | 
|---|
| 332 |             $aImg->SetLineWeight($this->weight);
 | 
|---|
| 333 |             $x1 = round($x1)+1; // We add one to not collide with the border
 | 
|---|
| 334 |             $y1=round($y1);
 | 
|---|
| 335 | 
 | 
|---|
| 336 |             // This is the center offset up from the baseline which is
 | 
|---|
| 337 |             // considered the "center" of the marks. This gets slightly complicated since
 | 
|---|
| 338 |             // we need to consider if the text is a multiline paragraph or if it is only
 | 
|---|
| 339 |             // a single line. The reason is that for single line the y1 corresponds to the baseline
 | 
|---|
| 340 |             // and that is fine. However for a multiline paragraph there is no single baseline
 | 
|---|
| 341 |             // and in that case the y1 corresponds to the lowest y for the bounding box. In that
 | 
|---|
| 342 |             // case we center the mark in the middle of the paragraph
 | 
|---|
| 343 |             if( !preg_match('/\n/',$p[0]) ) {
 | 
|---|
| 344 |                 // Single line
 | 
|---|
| 345 |                 $marky = ceil($y1-$this->mark_abs_vsize/2)-1;
 | 
|---|
| 346 |             } else {
 | 
|---|
| 347 |                 // Paragraph
 | 
|---|
| 348 |                 $marky = $y1 - $aImg->GetTextHeight($p[0])/2;
 | 
|---|
| 349 | 
 | 
|---|
| 350 |               //  echo "y1=$y1, p[o]={$p[0]}, marky=$marky<br>";
 | 
|---|
| 351 |             }
 | 
|---|
| 352 | 
 | 
|---|
| 353 |             //echo "<br>Mark #$i: marky=$marky<br>";
 | 
|---|
| 354 | 
 | 
|---|
| 355 |             $x1 += $this->mark_abs_hsize;
 | 
|---|
| 356 |     
 | 
|---|
| 357 |             if ( !empty($p[2]) && $p[2]->GetType() > -1 ) {
 | 
|---|
| 358 | 
 | 
|---|
| 359 | 
 | 
|---|
| 360 |                 // Make a plot mark legend. This is constructed with a mark which
 | 
|---|
| 361 |                 // is run through with a line
 | 
|---|
| 362 | 
 | 
|---|
| 363 |                 // First construct a bit of the line that looks exactly like the
 | 
|---|
| 364 |                 // line in the plot
 | 
|---|
| 365 |                 $aImg->SetColor($p[1]);
 | 
|---|
| 366 |                 if( is_string($p[3]) || $p[3]>0 ) {
 | 
|---|
| 367 |                     $aImg->SetLineStyle($p[3]);
 | 
|---|
| 368 |                     $aImg->StyleLine($x1-$this->mark_abs_hsize,$marky,$x1+$this->mark_abs_hsize,$marky);
 | 
|---|
| 369 |                 }
 | 
|---|
| 370 | 
 | 
|---|
| 371 |                 // Stroke a mark using image
 | 
|---|
| 372 |                 if( $p[2]->GetType() == MARK_IMG ) {
 | 
|---|
| 373 |                     $p[2]->Stroke($aImg,$x1,$marky);
 | 
|---|
| 374 |                 }
 | 
|---|
| 375 | 
 | 
|---|
| 376 |                 // Stroke a mark with the standard size
 | 
|---|
| 377 |                 // (As long as it is not an image mark )
 | 
|---|
| 378 |                 if( $p[2]->GetType() != MARK_IMG ) {
 | 
|---|
| 379 | 
 | 
|---|
| 380 |                     // Clear any user callbacks since we ont want them called for
 | 
|---|
| 381 |                     // the legend marks
 | 
|---|
| 382 |                     $p[2]->iFormatCallback = '';
 | 
|---|
| 383 |                     $p[2]->iFormatCallback2 = '';
 | 
|---|
| 384 | 
 | 
|---|
| 385 |                     // Since size for circles is specified as the radius
 | 
|---|
| 386 |                     // this means that we must half the size to make the total
 | 
|---|
| 387 |                     // width behave as the other marks
 | 
|---|
| 388 |                     if( $p[2]->GetType() == MARK_FILLEDCIRCLE || $p[2]->GetType() == MARK_CIRCLE ) {
 | 
|---|
| 389 |                         $p[2]->SetSize(min($this->mark_abs_vsize,$this->mark_abs_hsize)/2);
 | 
|---|
| 390 |                         $p[2]->Stroke($aImg,$x1,$marky);
 | 
|---|
| 391 |                     }
 | 
|---|
| 392 |                     else {
 | 
|---|
| 393 |                         $p[2]->SetSize(min($this->mark_abs_vsize,$this->mark_abs_hsize));
 | 
|---|
| 394 |                         $p[2]->Stroke($aImg,$x1,$marky);
 | 
|---|
| 395 |                     }
 | 
|---|
| 396 |                 }
 | 
|---|
| 397 |             }
 | 
|---|
| 398 |             elseif ( !empty($p[2]) && (is_string($p[3]) || $p[3]>0 ) ) {
 | 
|---|
| 399 |                 // Draw a styled line
 | 
|---|
| 400 |                 $aImg->SetColor($p[1]);
 | 
|---|
| 401 |                 $aImg->SetLineStyle($p[3]);
 | 
|---|
| 402 |                 $aImg->StyleLine($x1-$this->mark_abs_hsize,$marky,$x1+$this->mark_abs_hsize,$marky);
 | 
|---|
| 403 |                 $aImg->StyleLine($x1-$this->mark_abs_hsize,$marky+1,$x1+$this->mark_abs_hsize,$marky+1);
 | 
|---|
| 404 |             }
 | 
|---|
| 405 |             else {
 | 
|---|
| 406 |                 // Draw a colored box
 | 
|---|
| 407 |                 $color = $p[1] ;
 | 
|---|
| 408 | 
 | 
|---|
| 409 |                 // We make boxes slightly larger to better show
 | 
|---|
| 410 |                 $boxsize = max($this->mark_abs_vsize,$this->mark_abs_hsize) + 2 ;
 | 
|---|
| 411 | 
 | 
|---|
| 412 |                 $ym = $marky-ceil($boxsize/2) ; // Marker y-coordinate
 | 
|---|
| 413 | 
 | 
|---|
| 414 |                 // We either need to plot a gradient or a
 | 
|---|
| 415 |                 // pattern. To differentiate we use a kludge.
 | 
|---|
| 416 |                 // Patterns have a p[3] value of < -100
 | 
|---|
| 417 |                 if( $p[3] < -100 ) {
 | 
|---|
| 418 |                     // p[1][0] == iPattern, p[1][1] == iPatternColor, p[1][2] == iPatternDensity
 | 
|---|
| 419 |                     if( $patternFactory == null ) {
 | 
|---|
| 420 |                         $patternFactory = new RectPatternFactory();
 | 
|---|
| 421 |                     }
 | 
|---|
| 422 |                     $prect = $patternFactory->Create($p[1][0],$p[1][1],1);
 | 
|---|
| 423 |                     $prect->SetBackground($p[1][3]);
 | 
|---|
| 424 |                     $prect->SetDensity($p[1][2]+1);
 | 
|---|
| 425 |                     $prect->SetPos(new Rectangle($x1,$ym,$boxsize,$boxsize));
 | 
|---|
| 426 |                     $prect->Stroke($aImg);
 | 
|---|
| 427 |                     $prect=null;
 | 
|---|
| 428 |                 }
 | 
|---|
| 429 |                 else {
 | 
|---|
| 430 |                     if( is_array($color) && count($color)==2 ) {
 | 
|---|
| 431 |                         // The client want a gradient color
 | 
|---|
| 432 |                         $grad->FilledRectangle($x1-$boxsize/2,$ym,
 | 
|---|
| 433 |                                                $x1+$boxsize/2,$ym+$boxsize,
 | 
|---|
| 434 |                                                $color[0],$color[1],-$p[3]);
 | 
|---|
| 435 |                     }
 | 
|---|
| 436 |                     else {
 | 
|---|
| 437 |                         $aImg->SetColor($p[1]);
 | 
|---|
| 438 |                         $aImg->FilledRectangle($x1-$boxsize/2,$ym, $x1+$boxsize/2,$ym+$boxsize);
 | 
|---|
| 439 |                     }
 | 
|---|
| 440 | 
 | 
|---|
| 441 |                     // Draw a plot frame line
 | 
|---|
| 442 |                     $aImg->SetColor($this->color);
 | 
|---|
| 443 |                     $aImg->SetLineWeight($fillBoxFrameWeight);
 | 
|---|
| 444 |                     $aImg->Rectangle($x1-$boxsize/2,$ym,
 | 
|---|
| 445 |                                      $x1+$boxsize/2,$ym+$boxsize);
 | 
|---|
| 446 |                 }
 | 
|---|
| 447 |             }
 | 
|---|
| 448 |             $aImg->SetColor($this->font_color);
 | 
|---|
| 449 |             $aImg->SetFont($this->font_family,$this->font_style,$this->font_size);
 | 
|---|
| 450 |             $aImg->SetTextAlign('left','baseline');
 | 
|---|
| 451 | 
 | 
|---|
| 452 |             $debug=false;
 | 
|---|
| 453 |             $aImg->StrokeText($x1+$this->mark_abs_hsize+$this->xmargin,$y1,$p[0],
 | 
|---|
| 454 |                 0,'left',$debug);
 | 
|---|
| 455 | 
 | 
|---|
| 456 |             // Add CSIM for Legend if defined
 | 
|---|
| 457 |             if( !empty($p[4]) ) {
 | 
|---|
| 458 | 
 | 
|---|
| 459 |                 $xs = $x1 - $this->mark_abs_hsize ;
 | 
|---|
| 460 |                 $ys = $y1 + 1 ;
 | 
|---|
| 461 |                 $xe = $x1 + $aImg->GetTextWidth($p[0]) + $this->mark_abs_hsize + $this->xmargin ;
 | 
|---|
| 462 |                 $ye = $y1-$rowheight[$row]+1;
 | 
|---|
| 463 |                 $coords = "$xs,$ys,$xe,$y1,$xe,$ye,$xs,$ye";
 | 
|---|
| 464 |                 if( ! empty($p[4]) ) {
 | 
|---|
| 465 |                     $this->csimareas .= "<area shape=\"poly\" coords=\"$coords\" href=\"".htmlentities($p[4])."\"";
 | 
|---|
| 466 | 
 | 
|---|
| 467 |                     if( !empty($p[6]) ) {
 | 
|---|
| 468 |                         $this->csimareas .= " target=\"".$p[6]."\"";
 | 
|---|
| 469 |                     }
 | 
|---|
| 470 | 
 | 
|---|
| 471 |                     if( !empty($p[5]) ) {
 | 
|---|
| 472 |                         $tmp=sprintf($p[5],$p[0]);
 | 
|---|
| 473 |                         $this->csimareas .= " title=\"$tmp\" alt=\"$tmp\" ";
 | 
|---|
| 474 |                     }
 | 
|---|
| 475 |                     $this->csimareas .= " />\n";
 | 
|---|
| 476 |                 }
 | 
|---|
| 477 |             }
 | 
|---|
| 478 | 
 | 
|---|
| 479 |             if( $i >= $this->layout_n ) {
 | 
|---|
| 480 |                 $x1 = $xp+$this->xlmargin;
 | 
|---|
| 481 |                 $row++;
 | 
|---|
| 482 |                 if( !empty($rowheight[$row]) )
 | 
|---|
| 483 |                     $y1 += $rowheight[$row];
 | 
|---|
| 484 |                 $i = 1;
 | 
|---|
| 485 |             }
 | 
|---|
| 486 |             else {
 | 
|---|
| 487 |                 $x1 += $colwidth[($i-1) % $numcolumns] ;
 | 
|---|
| 488 |                 ++$i;
 | 
|---|
| 489 |             }
 | 
|---|
| 490 |         }
 | 
|---|
| 491 |     }
 | 
|---|
| 492 | } // Class
 | 
|---|
| 493 | 
 | 
|---|
| 494 | ?>
 | 
|---|