1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
|
<?php
/**
* File containing the abstract ezcGraphRenderer class
*
* @package Graph
* @version //autogentag//
* @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
/**
* Abstract class to transform the basic chart components. To be extended by
* three- and twodimensional renderers.
*
* @version //autogentag//
* @package Graph
*/
abstract class ezcGraphRenderer
{
/**
* Driver used to render results
*
* @var ezcGraphDriver
*/
protected $driver;
/**
* Axis space used for the x axis
*
* @var float
*/
protected $xAxisSpace = false;
/**
* Axis space used for the y axis
*
* @var float
*/
protected $yAxisSpace = false;
/**
* Context sensitive references to chart elements to use for referencing
* image elements depending on the output driver, like image maps, etc.
*
* @var array
*/
protected $elements = array();
/**
* Set renderers driver
*
* This method is used internally to set the direver used inside the chart
* class in the renderer. If you want to change the driver used for your
* chart, you should do this using the chart driver property, like:
*
* <code>
* $chart = new ezcGraphPieChart();
* $chart->driver = new ezcGraphSvgDriver();
* </code>
*
* @param ezcGraphDriver $driver Output driver
* @return void
*/
public function setDriver( ezcGraphDriver $driver )
{
$this->driver = $driver;
}
/**
* Adds a element reference for context
*
* @param ezcGraphContext $context Dataoint context
* @param mixed $reference Driver dependant reference
* @return void
*/
protected function addElementReference( ezcGraphContext $context, $reference )
{
$this->elements['data'][$context->dataset][$context->datapoint][] = $reference;
}
/**
* Return all chart element references
*
* Returns element references for the data sets in the chart, so the
* created graphic may be enhanced later.
*
* The resulting array looks like:
* <code>
* array (
* legend_url => array (
* $name => $url | null,
* ...
* ),
* legend => array (
* $name => $data,
* ...
* )
* data => array (
* $dataset => array (
* $name => $data,
* ...
* ),
* ...
* )
* )
* </code>
*
* The legend elements won't show up in the array, if there is no legend
* redered. The URLs are only available, if the url property has been set
* on the respective dataset.
*
* The data assigned to the legends and data elements is completely direver
* dependent. In the SVG and Flash driver there will jsut be some IDs,
* which allow you to reference the affected elements or element groups
* inside the flash or SVG file.
*
* For bitmap formats, like in the Cairo or GD driver, $data will be an
* array of ezcGraphCoordinate objects, which roughly describe the outline
* of the referenced element. For circles and alike the resolution of this
* outline can be configured in the respective driver.
*
* @return array
*/
public function getElementReferences()
{
return $this->elements;
}
/**
* __get
*
* @param string $propertyName
* @throws ezcBasePropertyNotFoundException
* If a the value for the property options is not an instance of
* @return mixed
* @ignore
*/
public function __get( $propertyName )
{
switch ( $propertyName )
{
case 'xAxisSpace':
case 'yAxisSpace':
return $this->$propertyName;
case 'elements':
return $this->elements;
default:
throw new ezcBasePropertyNotFoundException( $propertyName );
}
}
/**
* Draw pie segment
*
* Draws a single pie segment
*
* @param ezcGraphBoundings $boundings Chart boundings
* @param ezcGraphContext $context Context of call
* @param ezcGraphColor $color Color of pie segment
* @param float $startAngle Start angle
* @param float $endAngle End angle
* @param mixed $label Label of pie segment
* @param bool $moveOut Move out from middle for hilighting
* @return void
*/
abstract public function drawPieSegment(
ezcGraphBoundings $boundings,
ezcGraphContext $context,
ezcGraphColor $color,
$startAngle = .0,
$endAngle = 360.,
$label = false,
$moveOut = false
);
/**
* Draw bar
*
* Draws a bar as a data element in a line chart
*
* @param ezcGraphBoundings $boundings Chart boundings
* @param ezcGraphContext $context Context of call
* @param ezcGraphColor $color Color of line
* @param ezcGraphCoordinate $position Position of data point
* @param float $stepSize Space which can be used for bars
* @param int $dataNumber Number of dataset
* @param int $dataCount Count of datasets in chart
* @param int $symbol Symbol to draw for line
* @param float $axisPosition Position of axis for drawing filled lines
* @return void
*/
abstract public function drawBar(
ezcGraphBoundings $boundings,
ezcGraphContext $context,
ezcGraphColor $color,
ezcGraphCoordinate $position,
$stepSize,
$dataNumber = 1,
$dataCount = 1,
$symbol = ezcGraph::NO_SYMBOL,
$axisPosition = 0.
);
/**
* Draw data line
*
* Draws a line as a data element in a line chart
*
* @param ezcGraphBoundings $boundings Chart boundings
* @param ezcGraphContext $context Context of call
* @param ezcGraphColor $color Color of line
* @param ezcGraphCoordinate $start Starting point
* @param ezcGraphCoordinate $end Ending point
* @param int $dataNumber Number of dataset
* @param int $dataCount Count of datasets in chart
* @param int $symbol Symbol to draw for line
* @param ezcGraphColor $symbolColor Color of the symbol, defaults to linecolor
* @param ezcGraphColor $fillColor Color to fill line with
* @param float $axisPosition Position of axis for drawing filled lines
* @param float $thickness Line thickness
* @return void
*/
abstract public function drawDataLine(
ezcGraphBoundings $boundings,
ezcGraphContext $context,
ezcGraphColor $color,
ezcGraphCoordinate $start,
ezcGraphCoordinate $end,
$dataNumber = 1,
$dataCount = 1,
$symbol = ezcGraph::NO_SYMBOL,
ezcGraphColor $symbolColor = null,
ezcGraphColor $fillColor = null,
$axisPosition = 0.,
$thickness = 1.
);
/**
* Draws a highlight textbox for a datapoint.
*
* A highlight textbox for line and bar charts means a box with the current
* value in the graph.
*
* @param ezcGraphBoundings $boundings Chart boundings
* @param ezcGraphContext $context Context of call
* @param ezcGraphCoordinate $end Ending point
* @param float $axisPosition Position of axis for drawing filled lines
* @param int $dataNumber Number of dataset
* @param int $dataCount Count of datasets in chart
* @param ezcGraphFontOptions $font Font used for highlight string
* @param string $text Acutual value
* @param int $size Size of highlight text
* @param ezcGraphColor $markLines
* @param int $xOffset
* @param int $yOffset
* @param float $stepSize
* @param int $type
* @return void
*/
abstract public function drawDataHighlightText(
ezcGraphBoundings $boundings,
ezcGraphContext $context,
ezcGraphCoordinate $end,
$axisPosition = 0.,
$dataNumber = 1,
$dataCount = 1,
ezcGraphFontOptions $font,
$text,
$size,
ezcGraphColor $markLines = null,
$xOffset = 0,
$yOffset = 0,
$stepSize = 0.,
$type = ezcGraph::LINE
);
/**
* Draw legend
*
* Will draw a legend in the bounding box
*
* @param ezcGraphBoundings $boundings Bounding of legend
* @param ezcGraphChartElementLegend $legend Legend to draw
* @param int $type Type of legend: Protrait or landscape
* @return void
*/
abstract public function drawLegend(
ezcGraphBoundings $boundings,
ezcGraphChartElementLegend $legend,
$type = ezcGraph::VERTICAL
);
/**
* Draw box
*
* Box are wrapping each major chart element and draw border, background
* and title to each chart element.
*
* Optionally a padding and margin for each box can be defined.
*
* @param ezcGraphBoundings $boundings Boundings of the box
* @param ezcGraphColor $background Background color
* @param ezcGraphColor $borderColor Border color
* @param int $borderWidth Border width
* @param int $margin Margin
* @param int $padding Padding
* @param mixed $title Title of the box
* @param int $titleSize Size of title in the box
* @return ezcGraphBoundings Remaining inner boundings
*/
abstract public function drawBox(
ezcGraphBoundings $boundings,
ezcGraphColor $background = null,
ezcGraphColor $borderColor = null,
$borderWidth = 0,
$margin = 0,
$padding = 0,
$title = false,
$titleSize = 16
);
/**
* Draw text
*
* Draws the provided text in the boundings
*
* @param ezcGraphBoundings $boundings Boundings of text
* @param string $text Text
* @param int $align Alignement of text
* @param ezcGraphRotation $rotation
* @return void
*/
abstract public function drawText(
ezcGraphBoundings $boundings,
$text,
$align = ezcGraph::LEFT,
ezcGraphRotation $rotation = null
);
/**
* Draw axis
*
* Draws an axis form the provided start point to the end point. A specific
* angle of the axis is not required.
*
* For the labeleing of the axis a sorted array with major steps and an
* array with minor steps is expected, which are build like this:
* array(
* array(
* 'position' => (float),
* 'label' => (string),
* )
* )
* where the label is optional.
*
* The label renderer class defines how the labels are rendered. For more
* documentation on this topic have a look at the basic label renderer
* class.
*
* Additionally it can be specified if a major and minor grid are rendered
* by defining a color for them. The axis label is used to add a caption
* for the axis.
*
* @param ezcGraphBoundings $boundings Boundings of axis
* @param ezcGraphCoordinate $start Start point of axis
* @param ezcGraphCoordinate $end Endpoint of axis
* @param ezcGraphChartElementAxis $axis Axis to render
* @param ezcGraphAxisLabelRenderer $labelClass Used label renderer
* @return void
*/
abstract public function drawAxis(
ezcGraphBoundings $boundings,
ezcGraphCoordinate $start,
ezcGraphCoordinate $end,
ezcGraphChartElementAxis $axis,
ezcGraphAxisLabelRenderer $labelClass = null
);
/**
* Draw axis arrow head
*
* Draw an arrow head at the specified position using specified size
* and direction of the error head. Repsects the axisEndStyle option in
* the base renderer options class.
*
* @param ezcGraphCoordinate $position
* @param ezcGraphVector $direction
* @param float $size
* @param ezcGraphColor $color
* @return void
*/
protected function drawAxisArrowHead( ezcGraphCoordinate $position, ezcGraphVector $direction, $size, ezcGraphColor $color )
{
$orthogonalDirection = clone $direction;
$orthogonalDirection->rotateClockwise();
if ( $this->options->axisEndStyle === ezcGraph::ARROW )
{
$this->driver->drawPolygon(
array(
new ezcGraphCoordinate(
$position->x,
$position->y
),
new ezcGraphCoordinate(
$position->x
- $orthogonalDirection->x * $size / 2
+ $direction->x * $size,
$position->y
- $orthogonalDirection->y * $size / 2
+ $direction->y * $size
),
new ezcGraphCoordinate(
$position->x
+ $orthogonalDirection->x * $size / 2
+ $direction->x * $size,
$position->y
+ $orthogonalDirection->y * $size / 2
+ $direction->y * $size
),
),
$color,
true
);
}
elseif ( $this->options->axisEndStyle !== ezcGraph::NO_SYMBOL )
{
$topLeft = new ezcGraphCoordinate(
$position->x
+ $orthogonalDirection->x * $size / 2
+ $direction->x * $size,
$position->y
+ $orthogonalDirection->y * $size / 2
+ $direction->y * $size
);
$bottomRight = new ezcGraphCoordinate(
$position->x
- $orthogonalDirection->x * $size / 2,
$position->y
- $orthogonalDirection->y * $size / 2
);
$this->drawSymbol(
$boundings = new ezcGraphBoundings(
min( $topLeft->x, $bottomRight->x ),
min( $topLeft->y, $bottomRight->y ),
max( $topLeft->x, $bottomRight->x ),
max( $topLeft->y, $bottomRight->y )
),
$color,
$this->options->axisEndStyle
);
}
}
/**
* Draw background image
*
* Draws a background image at the defined position. If repeat is set the
* background image will be repeated like any texture.
*
* @param ezcGraphBoundings $boundings Boundings for the background image
* @param string $file Filename of background image
* @param int $position Position of background image
* @param int $repeat Type of repetition
* @return void
*/
abstract public function drawBackgroundImage(
ezcGraphBoundings $boundings,
$file,
$position = 48, // ezcGraph::CENTER | ezcGraph::MIDDLE
$repeat = ezcGraph::NO_REPEAT
);
/**
* Draw Symbol
*
* Draws a single symbol defined by the symbol constants in ezcGraph. for
* NO_SYMBOL a rect will be drawn.
*
* @param ezcGraphBoundings $boundings Boundings of symbol
* @param ezcGraphColor $color Color of symbol
* @param int $symbol Type of symbol
* @return void
*/
public function drawSymbol(
ezcGraphBoundings $boundings,
ezcGraphColor $color,
$symbol = ezcGraph::NO_SYMBOL )
{
switch ( $symbol )
{
case ezcGraph::NO_SYMBOL:
case ezcGraph::SQUARE:
$return = $this->driver->drawPolygon(
array(
new ezcGraphCoordinate( $boundings->x0, $boundings->y0 ),
new ezcGraphCoordinate( $boundings->x1, $boundings->y0 ),
new ezcGraphCoordinate( $boundings->x1, $boundings->y1 ),
new ezcGraphCoordinate( $boundings->x0, $boundings->y1 ),
),
$color,
true
);
// Draw optional gleam
if ( $this->options->legendSymbolGleam !== false )
{
$this->driver->drawPolygon(
array(
$topLeft = new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) * $this->options->legendSymbolGleamSize,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) * $this->options->legendSymbolGleamSize
),
new ezcGraphCoordinate(
$boundings->x1 - ( $boundings->x1 - $boundings->x0 ) * $this->options->legendSymbolGleamSize,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) * $this->options->legendSymbolGleamSize
),
$bottomRight = new ezcGraphCoordinate(
$boundings->x1 - ( $boundings->x1 - $boundings->x0 ) * $this->options->legendSymbolGleamSize,
$boundings->y1 - ( $boundings->y1 - $boundings->y0 ) * $this->options->legendSymbolGleamSize
),
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) * $this->options->legendSymbolGleamSize,
$boundings->y1 - ( $boundings->y1 - $boundings->y0 ) * $this->options->legendSymbolGleamSize
),
),
new ezcGraphLinearGradient(
$bottomRight,
$topLeft,
$color->darken( -$this->options->legendSymbolGleam ),
$color->darken( $this->options->legendSymbolGleam )
),
true
);
}
return $return;
case ezcGraph::BOX:
$return = $this->driver->drawPolygon(
array(
new ezcGraphCoordinate( $boundings->x0, $boundings->y0 ),
new ezcGraphCoordinate( $boundings->x1, $boundings->y0 ),
new ezcGraphCoordinate( $boundings->x1, $boundings->y1 ),
new ezcGraphCoordinate( $boundings->x0, $boundings->y1 ),
),
$color,
false
);
return $return;
case ezcGraph::DIAMOND:
$return = $this->driver->drawPolygon(
array(
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) / 2,
$boundings->y0
),
new ezcGraphCoordinate(
$boundings->x1,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) / 2
),
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) / 2,
$boundings->y1
),
new ezcGraphCoordinate(
$boundings->x0,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) / 2
),
),
$color,
true
);
// Draw optional gleam
if ( $this->options->legendSymbolGleam !== false )
{
$this->driver->drawPolygon(
array(
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) / 2,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) * $this->options->legendSymbolGleamSize
),
new ezcGraphCoordinate(
$boundings->x1 - ( $boundings->x1 - $boundings->x0 ) * $this->options->legendSymbolGleamSize,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) / 2
),
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) / 2,
$boundings->y1 - ( $boundings->y1 - $boundings->y0 ) * $this->options->legendSymbolGleamSize
),
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) * $this->options->legendSymbolGleamSize,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) / 2
),
),
new ezcGraphLinearGradient(
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) * 0.353553391,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) * 0.353553391
),
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) * ( 1 - 0.353553391 ),
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) * ( 1 - 0.353553391 )
),
$color->darken( -$this->options->legendSymbolGleam ),
$color->darken( $this->options->legendSymbolGleam )
),
true
);
}
return $return;
case ezcGraph::BULLET:
$return = $this->driver->drawCircle(
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) / 2,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) / 2
),
$boundings->x1 - $boundings->x0,
$boundings->y1 - $boundings->y0,
$color,
true
);
// Draw optional gleam
if ( $this->options->legendSymbolGleam !== false )
{
$this->driver->drawCircle(
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) / 2,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) / 2
),
( $boundings->x1 - $boundings->x0 ) * $this->options->legendSymbolGleamSize,
( $boundings->y1 - $boundings->y0 ) * $this->options->legendSymbolGleamSize,
new ezcGraphLinearGradient(
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) * 0.292893219,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) * 0.292893219
),
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) * 0.707106781,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) * 0.707106781
),
$color->darken( -$this->options->legendSymbolGleam ),
$color->darken( $this->options->legendSymbolGleam )
),
true
);
}
return $return;
case ezcGraph::CIRCLE:
return $this->driver->drawCircle(
new ezcGraphCoordinate(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) / 2,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) / 2
),
$boundings->x1 - $boundings->x0,
$boundings->y1 - $boundings->y0,
$color,
false
);
}
}
/**
* Finish rendering
*
* Method is called before the final image is renderer, so that finishing
* operations can be performed here.
*
* @return void
*/
abstract protected function finish();
/**
* Reset renderer properties
*
* Reset all renderer properties, which were calculated during the
* rendering process, to offer a clean environment for rerendering.
*
* @return void
*/
protected function resetRenderer()
{
$this->xAxisSpace = false;
$this->yAxisSpace = false;
// Reset driver, maintaining its configuration
$driverClass = get_class( $this->driver );
$driverOptions = $this->driver->options;
$this->driver = new $driverClass();
$this->driver->options = $driverOptions;
}
/**
* Finally renders the image
*
* @param string $file Filename of destination file
* @return void
*/
public function render( $file = null )
{
$this->finish();
if ( $file === null )
{
$this->driver->renderToOutput();
}
else
{
$this->driver->render( $file );
}
$this->resetRenderer();
}
}
?>
|