From 5f35800d9d546d56eaf98073c7ba3500018d6925 Mon Sep 17 00:00:00 2001 From: Justin Settle Date: Wed, 8 Feb 2017 10:40:05 -0500 Subject: [PATCH] fix: Patch generic_multi graph to fix legend overflow #5766 --- html/includes/graphs/generic_multi.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/html/includes/graphs/generic_multi.inc.php b/html/includes/graphs/generic_multi.inc.php index e7b10b8d09..bbaef2ed53 100644 --- a/html/includes/graphs/generic_multi.inc.php +++ b/html/includes/graphs/generic_multi.inc.php @@ -21,7 +21,8 @@ if ($width > '500') { $descr_len = 24; } else { $descr_len = 12; - $descr_len += round(($width - 250) / 8); + # FIXME - Presently overflows graph + #$descr_len += round(($width - 250) / 8); } if ($nototal) {