From b925226ab2e752d291da04332178495707c09106 Mon Sep 17 00:00:00 2001
From: Daniel Maya <daniel.maya@artica.es>
Date: Thu, 8 Sep 2016 16:24:55 +0200
Subject: [PATCH] Fixed bug.ticket #3316

(cherry picked from commit 39c2cb3bad8ebc0c8cde527cf445037064e70e2a)
---
 pandora_console/include/graphs/functions_flot.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pandora_console/include/graphs/functions_flot.php b/pandora_console/include/graphs/functions_flot.php
index 2cb236fd61..050185f4e4 100644
--- a/pandora_console/include/graphs/functions_flot.php
+++ b/pandora_console/include/graphs/functions_flot.php
@@ -668,7 +668,7 @@ function flot_hcolumn_chart ($graph_data, $width, $height, $water_mark, $font =
 }
 
 // Returns a 3D column chart
-function flot_vcolumn_chart ($graph_data, $width, $height, $color, $legend, $long_index, $homeurl, $unit, $water_mark, $homedir) {
+function flot_vcolumn_chart ($graph_data, $width, $height, $color, $legend, $long_index, $homeurl, $unit, $water_mark, $homedir, $font, $font_size) {
 	global $config;
 	
 	include_javascript_dependencies_flot_graph();
@@ -749,9 +749,9 @@ function flot_vcolumn_chart ($graph_data, $width, $height, $color, $legend, $lon
 	
 	// Javascript code
 	$return .= "<script type='text/javascript'>";
-	
-	$return .= "pandoraFlotVBars('$graph_id', '$values', '$labels', '$labels', '$legend', '$colors', false, $max, '$water_mark', '$separator', '$separator2')";
-	
+
+	$return .= "pandoraFlotVBars('$graph_id', '$values', '$labels', '$labels', '$legend', '$colors', false, $max, '$water_mark', '$separator', '$separator2','$font',$font_size)";
+
 	$return .= "</script>";
 	
 	return $return;