This repository has been archived by the owner on Nov 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
writeChart.php
219 lines (149 loc) · 5.13 KB
/
writeChart.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
214
215
216
217
218
219
<?php
function writeChart( $atts ) {
$defaults = array(
"chartID" => NULL,
"chartType" => NULL,
"reportData" => NULL,
"chartSeriesLabels" => NULL,
"chartAxisLabels" => NULL,
"axisYMaxValue" => NULL,
"chartTitle" => NULL,
"backgroundColor" => NULL,
);
extract( array_merge( $defaults, $atts ) );
ob_start();
// EXPECTS DATA IN THIS FORMAT
// $chartID = "UniqueIDForChart"
// $reportData = array(
// array(65,59,80,81,56,55,40),
// array(28,48,40,19,86,27,90)
// );
// $chartSeriesLabels = array( "Series 1", "Series 2");
// $chartAxisLabels = array( "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul" );
// -------------------------------------------------------------------------
// CHECK FOR ERRORS
$error = FALSE;
$errorList = array();
// Ensure too much data isn't passed in
if ( count( $chartSeriesLabels ) > $GLOBALS['MAX_SERIES'] ) {
$error = TRUE;
$errorList[] = __t('ErrorTooMuchData');
}
// Ensure chart type is one of the valid choices
switch ($chartType) {
case "bar";
case "line";
break;
default;
$error = TRUE;
$errorList[] = __t('InvalidChartType');
break;
}
// -------------------------------------------------------------------------
if ($error) {
echo writeError( __FUNCTION__ , $errorList );
$out = ob_get_clean();
return $out;
}
// -------------------------------------------------------------------------
?>
<?php if ( !empty( $chartTitle ) ) { ?>
<h4 class="reportChartTitle"><?php echo $chartTitle; ?></h4>
<?php } ?>
<div class="reportChart">
<canvas id="<?php echo $chartID; ?>"></canvas>
</div>
<?php
// DEBUG
/*
echo "<pre>WRITE CHART DATA:\n";
echo print_r( $reportData );
echo "</pre>";
echo "<pre>CHART SERIES LABELS:\n";
echo print_r( $chartSeriesLabels );
echo "</pre>";
*/
// Write simpler YYYY-MM chart labels (instead of the full YYYY-MM-DD ones)
$cal = array();
foreach ( $chartAxisLabels as $c ) {
$cal[] = substr( $c, 0, 7 );
}
$labels = '"' . implode('", "', $cal) . '"';
$ds = "";
// For each series
// foreach ( $chartSeriesLabels as $key => $dataLabel ) {
$i = 0;
foreach ($reportData as $key => $reportDataItem) {
// DEBUG
/*
echo "<pre>\$reportData[\$key] = (\$key = $key)\n";
echo print_r ( $reportData[$key] );
echo "</pre>";
*/
$ds .= "{";
// $ds .= "repsonsive: true,";
// $ds .= "maintainAspectRatio: true,";
$ds .= "label: \"" . $chartSeriesLabels[$i] . "\",";
$ds .= "data: [" . implode( ",", $reportData[$key]) . "],";
switch ( $chartType ) {
case "bar";
$ds .= "backgroundColor: '" . getColor("fillColorSolid", $i) . "',";
break;
case "line";
if ( empty( $backgroundColor ) ) {
// If there are more than two series, turn off background fill
// so that the charts don't look muddy
if ( count( $chartSeriesLabels ) > 2 ) {
$backgroundColor = "fillColorNone";
} else {
$backgroundColor = "fillColorTransparent";
}
}
$ds .= "backgroundColor: '" . getColor($backgroundColor, $i) . "',";
break;
}
$ds .= "borderColor: '" . getColor("strokeColor", $i) . "',";
$ds .= "pointBackgroundColor: '" . getColor("strokeColor", $i) . "',";
$ds .= "pointBorderColor: 'rgba(255,255,255,1)',";
$ds .= "pointBorderWidth: 2,";
$ds .= "pointRadius: 5,";
$ds .= "pointHitRadius: 20,";
$ds .= "pointHoverRadius: 5,";
$ds .= "pointHoverBorderWidth: 2,";
$ds .= "pointHoverBorderColor: \"" . getColor("pointHighlightStroke",$i) . "\",";
$ds .= "pointHoverBackgroundColor: \"" . getColor("pointHighlightFill",$i) . "\",";
$ds .= "},";
$i++;
}
switch ($chartType) {
case "bar";
$defaults = writeChartDefaults( array(
"chartType" => "bar",
"axisYMaxValue" => $axisYMaxValue,
) );
$chart = "var myLineChart = new Chart(ctx, { type: 'bar', data, options });";
break;
case "line";
$defaults = writeChartDefaults( array(
"chartType" => "line",
) );
$chart = "var myLineChart = new Chart(ctx, { type: 'line', data, options });";
break;
}
?>
<script>
var ctx = document.getElementById("<?php echo $chartID; ?>").getContext("2d");
// WRITE CHART DATA
var data = {
labels: [<?php echo $labels; ?>],
datasets: [<?php echo $ds; ?>]
};
<?php
echo $defaults;
echo $chart;
?>
</script>
<?php
$out = ob_get_clean();
return $out;
}