forked from goat1000/SVGGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SVGGraphGroupedBar3DGraph.php
132 lines (115 loc) · 4.27 KB
/
SVGGraphGroupedBar3DGraph.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
<?php
/**
* Copyright (C) 2012-2016 Graham Breach
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* For more information, please contact <[email protected]>
*/
require_once 'SVGGraphMultiGraph.php';
require_once 'SVGGraphBar3DGraph.php';
require_once 'SVGGraphGroupedBarGraph.php';
class GroupedBar3DGraph extends Bar3DGraph {
protected function Draw()
{
$body = $this->Grid() . $this->UnderShapes();
$chunk_count = count($this->multi_graph);
list($chunk_width, $bspace, $chunk_unit_width) =
GroupedBarGraph::BarPosition($this->bar_width, $this->bar_width_min,
$this->x_axes[$this->main_x_axis]->Unit(), $chunk_count, $this->bar_space,
$this->group_space);
$bar = array('width' => $chunk_width);
$this->ColourSetup($this->multi_graph->ItemsCount(-1), $chunk_count);
$this->block_width = $chunk_width;
list($this->bx, $this->by) = $this->Project(-1, 0, $chunk_width);
// make the top parallelogram, set it as a symbol for re-use
$top = $this->BarTop();
$bnum = 0;
// get the translation for the whole bar
// unit space is 1 deep * $chunk_count wide
list($tx, $ty) = $this->Project(0, 0, $bspace);
$all_group = array();
if($tx || $ty)
$all_group['transform'] = "translate($tx,$ty)";
if($this->semantic_classes)
$all_group['class'] = 'series';
$bars = '';
$group = array();
foreach($this->multi_graph as $itemlist) {
$item = $itemlist[0];
$k = $item->key;
$bar_pos = $this->GridPosition($item, $bnum);
if(!is_null($bar_pos)) {
for($j = 0; $j < $chunk_count; ++$j) {
$bar['x'] = $bspace + $bar_pos + ($j * $chunk_unit_width);
$item = $itemlist[$j];
if(!is_null($item->value)) {
$bar_sections = $this->Bar3D($item, $bar, $top, $bnum, $j, NULL,
$this->DatasetYAxis($j));
$group['fill'] = $this->GetColour($item, $bnum, $j);
$show_label = $this->AddDataLabel($j, $bnum, $group, $item,
$bar['x'] + $tx, $bar['y'] + $ty, $bar['width'], $bar['height']);
if($this->show_tooltips)
$this->SetTooltip($group, $item, $j, $item->key, $item->value);
$link = $this->GetLink($item, $k, $bar_sections);
$this->SetStroke($group, $item, $j, 'round');
if($this->semantic_classes)
$group['class'] = "series{$j}";
$bars .= $this->Element('g', $group, NULL, $link);
unset($group['id'], $group['class']);
$this->SetLegendEntry($j, $bnum, $item, $group);
}
}
}
++$bnum;
}
if(count($all_group))
$bars = $this->Element('g', $all_group, NULL, $bars);
$body .= $bars;
$body .= $this->OverShapes();
$body .= $this->Axes();
return $body;
}
/**
* construct multigraph
*/
public function Values($values)
{
parent::Values($values);
if(!$this->values->error)
$this->multi_graph = new MultiGraph($this->values, $this->force_assoc,
$this->datetime_keys, $this->require_integer_keys);
}
/**
* Override AdjustAxes to change depth
*/
protected function AdjustAxes(&$x_len, &$y_len)
{
/**
* The depth is roughly 1/$num - but it must also take into account the
* bar and group spacing, which is where things get messy
*/
$ends = $this->GetAxisEnds();
$num = $ends['k_max'][0] - $ends['k_min'][0] + 1;
$block = $x_len / $num;
$group = count($this->values);
$a = $this->bar_space;
$b = $this->group_space;
$c = (($block) - $a - ($group - 1) * $b) / $group;
$d = ($a + $c) / $block;
$this->depth = $d;
return parent::AdjustAxes($x_len, $y_len);
}
}