removed watermark from incidents statistics graphs

This commit is contained in:
alejandro-campos 2018-07-05 18:48:31 +02:00
parent 95678f706b
commit 63a47e3acf
1 changed files with 5 additions and 5 deletions

View File

@ -2967,7 +2967,7 @@ function grafico_incidente_prioridad () {
} }
return pie3d_graph($config['flash_charts'], $data, 320, 200, return pie3d_graph($config['flash_charts'], $data, 320, 200,
__('Other'), '', $water_mark, __('Other'), '', '',
$config['fontpath'], $config['font_size']); $config['fontpath'], $config['font_size']);
} }
@ -3008,7 +3008,7 @@ function graph_incidents_status () {
} }
return pie3d_graph($config['flash_charts'], $data, 320, 200, return pie3d_graph($config['flash_charts'], $data, 320, 200,
__('Other'), '', $water_mark, __('Other'), '', '',
$config['fontpath'], $config['font_size']); $config['fontpath'], $config['font_size']);
} }
@ -3064,7 +3064,7 @@ function graphic_incident_group () {
} }
return pie3d_graph($config['flash_charts'], $data, 320, 200, return pie3d_graph($config['flash_charts'], $data, 320, 200,
__('Other'), '', $water_mark, __('Other'), '', '',
$config['fontpath'], $config['font_size']); $config['fontpath'], $config['font_size']);
} }
@ -3119,7 +3119,7 @@ function graphic_incident_user () {
} }
return pie3d_graph($config['flash_charts'], $data, 320, 200, return pie3d_graph($config['flash_charts'], $data, 320, 200,
__('Other'), '', $water_mark, __('Other'), '', '',
$config['fontpath'], $config['font_size']); $config['fontpath'], $config['font_size']);
} }
@ -3173,7 +3173,7 @@ function graphic_incident_source($width = 320, $height = 200) {
} }
return pie3d_graph($config['flash_charts'], $data, $width, $height, return pie3d_graph($config['flash_charts'], $data, $width, $height,
__('Other'), '', $water_mark, __('Other'), '', '',
$config['fontpath'], $config['font_size']); $config['fontpath'], $config['font_size']);
} }