Merge branch '417-Labels-de-las-gráficas-en-Informes-PDF-se-ven-muy-pequeños-fix' into 'develop'

Fix PDF reports labels - #417

See merge request artica/pandorafms!1023
This commit is contained in:
vgilc 2017-11-06 17:29:44 +01:00
commit 1001b78ec2
2 changed files with 3 additions and 3 deletions

View File

@ -192,12 +192,12 @@ function vbar_graph($flash_chart, $chart_data, $width, $height,
}
else {
foreach ($chart_data as $key => $value) {
if(strlen($key) > 25){
if(strlen($key) > 20){
if(strpos($key, ' - ') != -1){
$key_temp = explode(" - ",$key);
$key_temp[0] = $key_temp[0]." \n";
$key_temp[1]= '...'.substr($key_temp[1],-15);
$key_temp[1]= '...'.substr($key_temp[1],-10);
$key2 = $key_temp[0].$key_temp[1];
io_safe_output($key2);
}

View File

@ -737,7 +737,7 @@ function pch_bar_graph ($graph_type, $index, $data, $width, $height, $font,
$margin_left = 40+50;
$margin_right = 90;
$margin_top = 10;
$margin_bottom = (3 * $max_chars)+40;
$margin_bottom = (3 * $max_chars)+80;
break;
case "hbar":
$scaleSettings = array("GridR"=>1000,"GridG"=>1000,"GridB"=>1000,"DrawSubTicks"=>TRUE,