fixed error in report custam graphs

This commit is contained in:
daniel 2017-03-06 10:58:15 +01:00
parent 584280f8f8
commit 7b97b30cfa
1 changed files with 9 additions and 1 deletions

View File

@ -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':