Merge branch '2436-Estadisticas-de-incidentes' into 'develop'

removed watermark from incidents statistics graphs

See merge request artica/pandorafms!1598
This commit is contained in:
vgilc 2018-09-28 10:51:36 +02:00
commit 7d3916fcb7
1 changed files with 5 additions and 5 deletions

View File

@ -3036,7 +3036,7 @@ function grafico_incidente_prioridad () {
}
return pie3d_graph($config['flash_charts'], $data, 320, 200,
__('Other'), '', $water_mark,
__('Other'), '', '',
$config['fontpath'], $config['font_size']);
}
@ -3077,7 +3077,7 @@ function graph_incidents_status () {
}
return pie3d_graph($config['flash_charts'], $data, 320, 200,
__('Other'), '', $water_mark,
__('Other'), '', '',
$config['fontpath'], $config['font_size']);
}
@ -3133,7 +3133,7 @@ function graphic_incident_group () {
}
return pie3d_graph($config['flash_charts'], $data, 320, 200,
__('Other'), '', $water_mark,
__('Other'), '', '',
$config['fontpath'], $config['font_size']);
}
@ -3188,7 +3188,7 @@ function graphic_incident_user () {
}
return pie3d_graph($config['flash_charts'], $data, 320, 200,
__('Other'), '', $water_mark,
__('Other'), '', '',
$config['fontpath'], $config['font_size']);
}
@ -3242,7 +3242,7 @@ function graphic_incident_source($width = 320, $height = 200) {
}
return pie3d_graph($config['flash_charts'], $data, $width, $height,
__('Other'), '', $water_mark,
__('Other'), '', '',
$config['fontpath'], $config['font_size']);
}