From a2d495aab5102ebafb38a6002f4cf88f7285543f Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Wed, 7 Mar 2012 11:03:22 +0000 Subject: [PATCH] 2012-03-07 Miguel de Dios * include/graphs/functions_flot.php: upload lost changes in previous commit. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5708 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++ .../include/graphs/functions_flot.php | 37 +++++++++++-------- 2 files changed, 27 insertions(+), 15 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 83f16818d9..77aa3f0cf5 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2012-03-07 Miguel de Dios + + * include/graphs/functions_flot.php: upload lost changes in previous + commit. + 2012-03-07 Miguel de Dios * include/javascript/jquery-1.6.1.min.js: removed this file because the diff --git a/pandora_console/include/graphs/functions_flot.php b/pandora_console/include/graphs/functions_flot.php index 3ea1700b74..1a1afd7ffc 100644 --- a/pandora_console/include/graphs/functions_flot.php +++ b/pandora_console/include/graphs/functions_flot.php @@ -81,7 +81,7 @@ function flot_area_stacked_graph($chart_data, $width, $height, $color, $legend, global $config; include_javascript_dependencies_flot_graph(); - + return flot_area_graph($chart_data, $width, $height, $color, $legend, $long_index, $homeurl, $unit, 'area_stacked', $water_mark, $serie_types, $chart_extra_data, $yellow_threshold, $red_threshold); } @@ -122,11 +122,11 @@ function flot_area_graph($chart_data, $width, $height, $color, $legend, $long_in // Set some containers to legend, graph, timestamp tooltip, etc. $return = "

"; - $return .= "
"; - $return .= ""; + $return .= "
"; + $return .= ""; $return .= ""; - if($water_mark != '') { + if ($water_mark != '') { $return .= ""; $watermark = 'true'; } @@ -146,8 +146,8 @@ function flot_area_graph($chart_data, $width, $height, $color, $legend, $long_in $serie_types2 = array(); $colors = array(); + $index = array_keys(reset($chart_data)); - foreach($index as $serie_key) { if(isset($color[$serie_key])) { $colors[] = $color[$serie_key]['color']; @@ -231,7 +231,7 @@ function flot_area_graph($chart_data, $width, $height, $color, $legend, $long_in $extra_height = $height - 50; $extra_width = (int)($width / 3); - $return .= ""; + $return .= ""; // Process extra data $events = array(); @@ -268,8 +268,15 @@ function flot_area_graph($chart_data, $width, $height, $color, $legend, $long_in $alerts = implode($separator,$alerts); $alert_ids = implode($separator,$alert_ids); $labels = implode($separator,$labels); - $labels_long = implode($separator,$long_index); - $legend = io_safe_output(implode($separator,$legend2)); + if (!empty($long_index)) { + $labels_long = implode($separator, $long_index); + } + else { + $labels_long = $labels; + } + if (!empty($legend)) { + $legend = io_safe_output(implode($separator,$legend)); + } $serie_types = implode($separator, $serie_types2); $colors = implode($separator, $colors); @@ -298,7 +305,7 @@ function flot_pie_chart ($values, $labels, $width, $height, $water_mark, $font = $graph_id = uniqid('graph_'); - $return = "
"; + $return = "
"; if($water_mark != '') { $return .= ""; @@ -314,11 +321,11 @@ function flot_pie_chart ($values, $labels, $width, $height, $water_mark, $font = $values = implode($separator,$values); $return .= ""; - + return $return; } @@ -338,7 +345,7 @@ function flot_hcolumn_chart ($graph_data, $width, $height, $water_mark) { $graph_id2 = uniqid('graph_'); // Set some containers to legend, graph, timestamp tooltip, etc. - $return .= "
"; + $return .= "
"; $return .= ""; if($water_mark != '') { @@ -432,7 +439,7 @@ function flot_vcolumn_chart ($graph_data, $width, $height, $color, $legend, $lon $graph_id2 = uniqid('graph_'); // Set some containers to legend, graph, timestamp tooltip, etc. - $return .= "
"; + $return .= "
"; $return .= ""; if($water_mark != '') { @@ -513,7 +520,7 @@ function flot_vcolumn_chart ($graph_data, $width, $height, $color, $legend, $lon $values = implode($separator2, $values2); $jsseries = implode(',', $jsseries); - + // Javascript code $return .= "