Merge branch 'ent-5855-Problemas-graficas-gauge-y-vertical-bars' into 'develop'
Fixed errors in vartical and gauges graph See merge request artica/pandorafms!3220
This commit is contained in:
commit
20b08dce3b
|
@ -1989,8 +1989,8 @@ function graphic_combined_module(
|
|||
$color = color_graph_array();
|
||||
|
||||
if ($params['vconsole'] === false) {
|
||||
$width = 200;
|
||||
$height = 200;
|
||||
$new_width = 200;
|
||||
$new_height = 200;
|
||||
} else {
|
||||
$ratio = ((200 * ( $height / (200 * $number_elements) )) / (200 * ( $width / (200 * $number_elements))));
|
||||
|
||||
|
|
|
@ -7788,8 +7788,9 @@ function reporting_custom_graph(
|
|||
'labels' => $content['style']['label'],
|
||||
];
|
||||
|
||||
$return['chart'] = '';
|
||||
if ($pdf === true) {
|
||||
$return['chart'] = '<img src="data:image/jpg;base64,';
|
||||
$return['chart'] .= '<img src="data:image/jpg;base64,';
|
||||
$return['chart'] .= graphic_combined_module(
|
||||
$modules,
|
||||
$params,
|
||||
|
@ -7797,11 +7798,18 @@ function reporting_custom_graph(
|
|||
);
|
||||
$return['chart'] .= '" />';
|
||||
} else {
|
||||
$return['chart'] = graphic_combined_module(
|
||||
if ($graphs[0]['stacked'] == CUSTOM_GRAPH_VBARS) {
|
||||
$return['chart'] .= '<div style="height:'.$config['graph_image_height'].'px;">';
|
||||
}
|
||||
|
||||
$return['chart'] .= graphic_combined_module(
|
||||
$modules,
|
||||
$params,
|
||||
$params_combined
|
||||
);
|
||||
if ($graphs[0]['stacked'] === CUSTOM_GRAPH_VBARS) {
|
||||
$return['chart'] .= '</div>';
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue