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
|
<?php
/**
* File containing the abstract ezcGraphAxisExactLabelRenderer class
*
* @package Graph
* @version //autogentag//
* @copyright Copyright (C) 2005,
2006 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
/**
* Renders axis labels like known from charts drawn in analysis
*
* @package Graph
*/
class ezcGraphAxisCenteredLabelRenderer extends ezcGraphAxisLabelRenderer
{
/**
* Show the last value on the axis, which will be aligned different than
* all other values, to not interfere with the arrow head of the axis.
*
* @var boolean
*/
protected $showLastValue = true;
/**
* Render Axis labels
*
* Render labels for an axis.
*
* @param ezcGraphRenderer $renderer Renderer used to draw the chart
* @param ezcGraphBoundings $boundings Boundings of the axis
* @param ezcGraphCoordinate $start Axis starting point
* @param ezcGraphCoordinate $end Axis ending point
* @param ezcGraphChartElementAxis $axis Axis instance
* @return void
*/
public function renderLabels(
ezcGraphRenderer $renderer,
ezcGraphBoundings $boundings,
ezcGraphCoordinate $start,
ezcGraphCoordinate $end,
ezcGraphChartElementAxis $axis )
{
/*
// receive rendering parameters from axis
$this->majorStepCount = $axis->getMajorStepCount();
$this->minorStepCount = $axis->getMinorStepCount();
// Determine normalized axis direction
$direction = new ezcGraphCoordinate(
$start->x - $end->x,
$start->y - $end->y
);
$length = sqrt( pow( $direction->x, 2) + pow( $direction->y, 2 ) );
$direction->x /= $length;
$direction->y /= $length;
// Calculate stepsizes for mjor and minor steps
$majorStep = new ezcGraphCoordinate(
( $end->x - $start->x ) / $this->majorStepCount,
( $end->y - $start->y ) / $this->majorStepCount
);
if ( $this->minorStepCount )
{
$minorStep = new ezcGraphCoordinate(
( $end->x - $start->x ) / $this->minorStepCount,
( $end->y - $start->y ) / $this->minorStepCount
);
}
if ( $this->outerGrid )
{
$gridBoundings = $boundings;
}
else
{
$gridBoundings = new ezcGraphBoundings(
$boundings->x0 + ( $boundings->x1 - $boundings->x0 ) * $axis->axisSpace,
$boundings->y0 + ( $boundings->y1 - $boundings->y0 ) * $axis->axisSpace,
$boundings->x1 - ( $boundings->x1 - $boundings->x0 ) * $axis->axisSpace,
$boundings->y1 - ( $boundings->y1 - $boundings->y0 ) * $axis->axisSpace
);
}
// Draw steps and grid
$step = 0;
while ( $step <= $this->majorStepCount )
{
// major grid
if ( $axis->majorGrid )
{
$this->drawGrid( $renderer, $gridBoundings, $start, $majorStep, $axis->majorGrid );
}
// major step
$this->drawStep( $renderer, $start, $direction, $axis->position, $this->majorStepSize, $axis->border );
++$step;
// second iteration for minor steps, if wanted
if ( $this->minorStepCount )
{
$minorGridPosition = new ezcGraphCoordinate(
$start->x + $minorStep->x,
$start->y + $minorStep->y
);
while ( $minorGridPosition->x < ( $start->x + $majorStep->x ) )
{
// minor grid
if ( $axis->minorGrid )
{
$this->drawGrid( $renderer, $gridBoundings, $minorGridPosition, $majorStep, $axis->minorGrid );
}
$minorGridPosition->x += $minorStep->x;
$minorGridPosition->y += $minorStep->y;
// minor step
$this->drawStep( $renderer, $minorGridPosition, $direction, $axis->position, $this->minorStepSize, $axis->border );
}
}
$start->x += $majorStep->x;
$start->y += $majorStep->y;
} */
}
}
?>
|