2011-03-30 14:34:25 +02:00
|
|
|
<?php
|
2011-04-01 14:28:50 +02:00
|
|
|
// Copyright (c) 2011-2011 Ártica Soluciones Tecnológicas
|
2011-03-30 14:34:25 +02:00
|
|
|
// http://www.artica.es <info@artica.es>
|
|
|
|
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; version 2
|
|
|
|
// 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 General Public License for more details.
|
|
|
|
|
|
|
|
include_once('functions_fsgraph.php');
|
2011-04-01 14:28:50 +02:00
|
|
|
include_once('functions_utils.php');
|
2011-03-30 14:34:25 +02:00
|
|
|
|
2011-04-01 14:28:50 +02:00
|
|
|
function vbar_graph($flash_chart, $chart_data, $width, $height, $color, $legend) {
|
2011-03-30 14:34:25 +02:00
|
|
|
if($flash_chart) {
|
|
|
|
echo fs_2d_column_chart ($chart_data, $width, $height);
|
|
|
|
}
|
|
|
|
else {
|
2011-04-01 14:28:50 +02:00
|
|
|
$id_graph = uniqid();
|
|
|
|
|
|
|
|
$graph = array();
|
|
|
|
$graph['data'] = $chart_data;
|
|
|
|
$graph['width'] = $width;
|
|
|
|
$graph['height'] = $height;
|
|
|
|
$graph['color'] = $color;
|
|
|
|
$graph['legend'] = $legend;
|
|
|
|
|
|
|
|
$id_graph = serialize_in_temp($graph);
|
|
|
|
|
|
|
|
echo "<img src='include/graphs/functions_pchart.php?graph_type=vbar&id_graph=".$id_graph."'>";
|
2011-03-30 14:34:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function threshold_graph($flash_chart, $chart_data, $width, $height) {
|
|
|
|
if($flash_chart) {
|
|
|
|
echo fs_2d_column_chart ($chart_data, $width, $height);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
echo "<img src='include/graphs/functions_pchart.php?graph_type=threshold&data=".json_encode($chart_data)."&width=".$width."&height=".$height."'>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-05 18:11:53 +02:00
|
|
|
function area_graph($flash_chart, $chart_data, $width, $height, $color,$legend, $long_index) {
|
2011-03-30 14:34:25 +02:00
|
|
|
if($flash_chart) {
|
2011-04-05 18:11:53 +02:00
|
|
|
return fs_area_graph($chart_data, $width, $height, $color, $legend, $long_index);
|
2011-03-30 14:34:25 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$id_graph = uniqid();
|
|
|
|
|
2011-04-05 18:11:53 +02:00
|
|
|
|
2011-03-30 14:34:25 +02:00
|
|
|
$graph = array();
|
|
|
|
$graph['data'] = $chart_data;
|
|
|
|
$graph['width'] = $width;
|
|
|
|
$graph['height'] = $height;
|
|
|
|
$graph['color'] = $color;
|
2011-03-31 19:07:00 +02:00
|
|
|
$graph['legend'] = $legend;
|
2011-03-30 14:34:25 +02:00
|
|
|
|
2011-04-05 18:11:53 +02:00
|
|
|
serialize_in_temp($graph, $id_graph);
|
2011-03-30 14:34:25 +02:00
|
|
|
|
2011-04-07 16:34:03 +02:00
|
|
|
return "<img src='http://127.0.0.1/pandora_console/include/graphs/functions_pchart.php?graph_type=area&id_graph=" . $id_graph . "' />";
|
2011-03-30 14:34:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function hbar_graph($flash_chart, $chart_data, $width, $height) {
|
|
|
|
if($flash_chart) {
|
|
|
|
echo fs_hbar_chart (array_values($chart_data), array_keys($chart_data), $width, $height);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
echo "<img src='include/graphs/functions_pchart.php?graph_type=hbar&data=".json_encode($chart_data)."&width=".$width."&height=".$height."'>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function pie3d_graph($flash_chart, $chart_data, $width, $height, $others_str = "other") {
|
|
|
|
return pie_graph('3d', $flash_chart, $chart_data, $width, $height, $others_str);
|
|
|
|
}
|
|
|
|
|
|
|
|
function pie2d_graph($flash_chart, $chart_data, $width, $height, $others_str = "other") {
|
|
|
|
return pie_graph('2d', $flash_chart, $chart_data, $width, $height, $others_str);
|
|
|
|
}
|
|
|
|
|
|
|
|
function pie_graph($graph_type, $flash_chart, $chart_data, $width, $height, $others_str) {
|
|
|
|
// This library allows only 9 colors
|
|
|
|
$max_values = 9;
|
|
|
|
|
|
|
|
if(count($chart_data) > $max_values) {
|
|
|
|
$chart_data_trunc = array();
|
|
|
|
$n = 1;
|
|
|
|
foreach($chart_data as $key => $value) {
|
|
|
|
if($n < $max_values) {
|
|
|
|
$chart_data_trunc[$key] = $value;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$chart_data_trunc[$others_str] += $value;
|
|
|
|
}
|
|
|
|
$n++;
|
|
|
|
}
|
|
|
|
$chart_data = $chart_data_trunc;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch($graph_type) {
|
|
|
|
case "2d":
|
|
|
|
if($flash_chart) {
|
|
|
|
return fs_2d_pie_chart (array_values($chart_data), array_keys($chart_data), $width, $height);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return "<img src='include/graphs/functions_pchart.php?graph_type=pie2d&data=".json_encode($chart_data)."&width=".$width."&height=".$height."&other_str=".$other_str."'>";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "3d":
|
|
|
|
if($flash_chart) {
|
|
|
|
return fs_3d_pie_chart (array_values($chart_data), array_keys($chart_data), $width, $height);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return "<img src='include/graphs/functions_pchart.php?graph_type=pie3d&data=".json_encode($chart_data)."&width=".$width."&height=".$height."&other_str=".$other_str."'>";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function gantt_graph($project_name, $from, $to, $tasks, $milestones, $width, $height) {
|
|
|
|
return fs_gantt_chart ($project_name, $from, $to, $tasks, $milestones, $width, $height);
|
|
|
|
}
|
|
|
|
?>
|