From 7b97b30cfa0f332e063e72f149bee0bf462b0c89 Mon Sep 17 00:00:00 2001 From: daniel Date: Mon, 6 Mar 2017 10:58:15 +0100 Subject: [PATCH] fixed error in report custam graphs --- pandora_console/include/functions_reporting.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 848a74938f..6f8c8f5603 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -5780,7 +5780,15 @@ function reporting_custom_graph($report, $content, $type = 'dinamic', reporting_set_conf_charts($width, $height, $only_image, $type, $content, $ttl); - $height += count($modules) * REPORTING_CUSTOM_GRAPH_LEGEND_EACH_MODULE_VERTICAL_SIZE; + //height for bullet chart + if($graph['stacked'] != 4){ + $height += count($modules) * REPORTING_CUSTOM_GRAPH_LEGEND_EACH_MODULE_VERTICAL_SIZE; + } + else{ + if(!$only_image){ + $height = 50; + } + } switch ($type) { case 'dinamic':