diff --git a/pandora_console/include/graphs/functions_d3.php b/pandora_console/include/graphs/functions_d3.php index 04f16642b2..a76d1f3c55 100644 --- a/pandora_console/include/graphs/functions_d3.php +++ b/pandora_console/include/graphs/functions_d3.php @@ -142,23 +142,25 @@ function d3_sunburst_graph ($data, $width = 700, $height = 700, $return = false) } function d3_bullet_chart($chart_data, $width, $height, $color, $legend, - $homeurl, $unit, $font, $font_size) { - - + $homeurl, $unit, $font, $font_size) { + global $config; + $output = ''; $output .= include_javascript_d3(true); + $id_bullet = uniqid(); + $output .= - '
+ '
'; return $output;