-
Notifications
You must be signed in to change notification settings - Fork 87
/
phpgraphlib_stacked.php
213 lines (183 loc) · 7.62 KB
/
phpgraphlib_stacked.php
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
<?php
/*
PHPGraphLib Graphing Library
The first version PHPGraphLib was written in 2007 by Elliott Brueggeman to
deliver PHP generated graphs quickly and easily. It has grown in both features
and maturity since its inception, but remains PHP 4.04+ compatible. Originally
available only for paid commerial use, PHPGraphLib was open-sourced in 2013
under the MIT License. Please visit http://www.ebrueggeman.com/phpgraphlib
for more information.
---
The MIT License (MIT)
Copyright (c) 2013 Elliott Brueggeman
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
class PHPGraphLibStacked extends PHPGraphLib
{
protected function generateBars()
{
$this->finalizeColors();
$barCount = 0;
$adjustment = 0;
$last_y1 = array();
$last_y2 = array();
if ($this->bool_user_data_range && $this->data_min >= 0) {
$adjustment = $this->data_min * $this->unit_scale;
}
$this->data_array = array_reverse($this->data_array);
foreach ($this->data_array as $data_set_num => $data_set) {
$lineX2 = null;
$xStart = $this->y_axis_x1 + ($this->space_width / 2);
foreach ($data_set as $key => $item) {
$hideBarOutline = false;
$x1 = round($xStart);
$x2 = round($xStart + $this->bar_width);
if ($data_set_num > 0) {
//find last set valid value for this dataset incase prior values were not set
$found = false;
$i = 1;
//default last to base in case none are found
$last = $this->x_axis_y1;
while ($found == false && ($data_set_num - $i) >= 0) {
if (isset($last_y1[$data_set_num - $i][$key])) {
$last = $last_y1[$data_set_num - $i][$key];
$found = true;
}
$i++;
}
$y2 = round($last);
$y1 = round(($y2 - ($item * $this->unit_scale) + $adjustment));
} else {
$y2 = round($this->x_axis_y1);
$y1 = round((($this->x_axis_y1 - ($item * $this->unit_scale) + $adjustment)));
}
//if we are using a user specified data range, need to limit what's displayed
if ($this->bool_user_data_range) {
if ($item <= $this->data_range_min) {
//don't display, we are out of our allowed display range!
$y1 = $y2;
$hideBarOutline = true;
} elseif ($item >= $this->data_range_max) {
//display, but cut off display above range max
$y1 = $this->x_axis_y1 - ($this->actual_displayed_max_value * $this->unit_scale) + $adjustment;
}
}
//draw bar and outline if nonzero
if ($this->bool_bars && $item != 0) {
if ($this->bool_gradient) {
$this->drawGradientBar($x1, $y1, $x2, $y2, $this->multi_gradient_colors_1[$data_set_num], $this->multi_gradient_colors_2[$data_set_num], $data_set_num);
} else {
imagefilledrectangle($this->image, $x1, $y1,$x2, $y2, $this->multi_bar_colors[$data_set_num]);
}
//draw bar outline
if ($this->bool_bar_outline && !$hideBarOutline) {
imagerectangle($this->image, $x1, $y1, $x2, $y2, $this->outline_color);
}
}
// display data values
if ($this->bool_data_values) {
$dataX = ($x1 + ($this->bar_width) / 2) - ((strlen($item) * self::DATA_VALUE_TEXT_WIDTH) / 2);
//value to be graphed is equal/over 0
if ($item >= 0) {
$dataY = $y1 - $this->data_value_padding - self::DATA_VALUE_TEXT_HEIGHT;
} else {
//check for item values below user spec'd range
if ($this->bool_user_data_range && $item <= $this->data_range_min) {
$dataY = $y1 - $this->data_value_padding - self::DATA_VALUE_TEXT_HEIGHT;
} else {
$dataY = $y1 + $this->data_value_padding;
}
}
//add currency sign, formatting etc
if ($this->data_format_array) {
$item = $this->applyDataFormats($item);
}
if ($this->data_currency) {
$item = $this->applyDataCurrency($item);
}
//recenter data position if necessary
$dataX -= ($this->data_additional_length * self::DATA_VALUE_TEXT_WIDTH) / 2;
imagestring($this->image, 2, $dataX, $dataY, $item, $this->data_value_color);
}
//write x axis value
if ($this->bool_x_axis_values) {
if ($data_set_num == $this->data_set_count - 1) {
if ($this->bool_x_axis_values_vert) {
if ($this->bool_all_negative) {
//we must put values above 0 line
$textVertPos = round($this->y_axis_y2 - self::AXIS_VALUE_PADDING);
} else {
//mix of both pos and neg numbers
//write value y axis bottom value (will be under bottom of grid even if x axis is floating due to
$textVertPos = round($this->y_axis_y1 + (strlen($key) * self::TEXT_WIDTH) + self::AXIS_VALUE_PADDING);
}
$textHorizPos = round($xStart + ($this->bar_width / 2) - (self::TEXT_HEIGHT / 2));
imagestringup($this->image, 2, $textHorizPos, $textVertPos, $key, $this->x_axis_text_color);
} else {
if ($this->bool_all_negative) {
//we must put values above 0 line
$textVertPos = round($this->y_axis_y2 - self::TEXT_HEIGHT - self::AXIS_VALUE_PADDING);
} else {
//mix of both pos and neg numbers
//write value y axis bottom value (will be under bottom of grid even if x axis is floating
$textVertPos=round($this->y_axis_y1 + (self::TEXT_HEIGHT * 2 / 3) - self::AXIS_VALUE_PADDING);
}
//horizontal data keys
$textHorizPos = round($xStart + ($this->bar_width / 2) - ((strlen($key) * self::TEXT_WIDTH) / 2));
imagestring($this->image, 2, $textHorizPos, $textVertPos, $key, $this->x_axis_text_color);
}
}
}
$xStart += $this->bar_width + $this->space_width;
$last_y1[$data_set_num][$key] = $y1;
}
}
}
public function addData($data, $data2 = '', $data3 = '', $data4 = '', $data5 = '')
{
parent::addData($data, $data2, $data3, $data4, $data5);
$key_max = array();
//loop through each row, adding values to keyed arrays to find combined max
foreach ($this->data_array as $data_set_num => $data_set) {
foreach ($data_set as $key => $item) {
$key_max[$key] = isset($key_max[$key]) ? $key_max[$key] + $item : $item;
if ($key_max[$key] < $this->data_min) {
$this->data_min = $key_max[$key];
}
if ($key_max[$key] > $this->data_max) {
$this->data_max = $key_max[$key];
}
}
}
}
public function setLine($bool)
{
$this->error[] = __function__ . '() function not allowed in PHPGraphLib Stacked extension.';
}
public function setDataPointSize($bool)
{
$this->error[] = __function__ . '() function not allowed in PHPGraphLib Stacked extension.';
}
public function setDataPoints($bool)
{
$this->error[] = __function__ . '() function not allowed in PHPGraphLib Stacked extension.';
}
public function setDataValues($bool)
{
$this->error[] = __function__ . '() function not allowed in PHPGraphLib Stacked extension.';
}
}