From ea67ffddb478601747d70c43ff51b83381620c0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= <79-jose.gonzalez@users.noreply.brutus.artica.es> Date: Fri, 14 Jan 2022 09:08:58 +0000 Subject: [PATCH] Update functions.php --- pandora_console/include/functions.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index d2c75dc494..baaa10a317 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -4185,8 +4185,11 @@ function generator_chart_to_pdf( ) { $width_img = 650; $height_img = ($params['height'] + 50); + } else if ($type_graph_pdf === 'hbar') { + $width_img = ($params['width'] ?? 550); + $height_img = $params['height']; } else { - $width_img = $params['width']; + $width_img = 550; $height_img = $params['height']; if ((int) $params['landscape'] === 1) {