1 |
<?php |
---|
2 |
|
---|
3 |
|
---|
4 |
|
---|
5 |
|
---|
6 |
|
---|
7 |
|
---|
8 |
|
---|
9 |
|
---|
10 |
|
---|
11 |
|
---|
12 |
|
---|
13 |
|
---|
14 |
|
---|
15 |
|
---|
16 |
|
---|
17 |
|
---|
18 |
|
---|
19 |
|
---|
20 |
require_once('phplot-5.0.5/phplot.php'); |
---|
21 |
|
---|
22 |
|
---|
23 |
function draw_stackedbar($chart_title, $legend, $ytitle, $data) { |
---|
24 |
|
---|
25 |
|
---|
26 |
|
---|
27 |
$data_colors = array('SkyBlue', 'green', 'orange', 'blue', 'purple', 'red', 'violet', 'azure1', 'yellow', 'DarkGreen'); |
---|
28 |
|
---|
29 |
|
---|
30 |
$output = tempnam('tmp/', 'plot'); |
---|
31 |
|
---|
32 |
$plot = new PHPlot(900, 400); |
---|
33 |
$plot->SetIsInline(True); |
---|
34 |
|
---|
35 |
|
---|
36 |
|
---|
37 |
$plot->SetImageBorderType('plain'); |
---|
38 |
$plot->SetDataColors($data_colors); |
---|
39 |
|
---|
40 |
$plot->SetPlotType('stackedbars'); |
---|
41 |
$plot->SetDataType('text-data'); |
---|
42 |
$plot->SetDataValues($data); |
---|
43 |
|
---|
44 |
$plot->SetTitle($chart_title); |
---|
45 |
$plot->SetYTitle($ytitle); |
---|
46 |
$plot->SetLegend($legend); |
---|
47 |
|
---|
48 |
$plot->SetXTickLabelPos('none'); |
---|
49 |
$plot->SetXTickPos('none'); |
---|
50 |
|
---|
51 |
$plot->SetLegendPixels(760, 40); |
---|
52 |
$plot->SetMarginsPixels(100, 150, 50, 50); |
---|
53 |
|
---|
54 |
$plot->SetNumberFormat(',', '.'); |
---|
55 |
$plot->SetPrecisionY(0); |
---|
56 |
$plot->SetYLabelType('data'); |
---|
57 |
|
---|
58 |
$plot->SetOutputFile($output); |
---|
59 |
$plot->DrawGraph(); |
---|
60 |
|
---|
61 |
chmod($output, 0644); |
---|
62 |
$target = dirname($output).'/'.basename($output).'.png'; |
---|
63 |
if (rename($output, $target)) { |
---|
64 |
return 'tmp/'.basename($target); |
---|
65 |
} else { |
---|
66 |
return False; |
---|
67 |
} |
---|
68 |
} |
---|
69 |
|
---|
70 |
|
---|