2011-03-30 14:34:25 +02:00
|
|
|
<?php
|
2011-04-01 14:28:50 +02:00
|
|
|
// Copyright (c) 2011-2011 Ártica Soluciones Tecnológicas
|
2011-03-30 14:34:25 +02:00
|
|
|
// http://www.artica.es <info@artica.es>
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; version 2
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2018-10-19 12:01:22 +02:00
|
|
|
// Turn on output buffering.
|
|
|
|
// The entire buffer will be discarded later so that any accidental output
|
|
|
|
// does not corrupt images generated by fgraph.
|
2022-12-20 14:22:13 +01:00
|
|
|
use Artica\PHPChartJS\Factory;
|
2022-12-13 09:10:13 +01:00
|
|
|
|
2018-10-19 12:01:22 +02:00
|
|
|
ob_start();
|
|
|
|
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
if (empty($config['homedir'])) {
|
2019-01-30 16:18:44 +01:00
|
|
|
include_once '../../include/config.php';
|
|
|
|
global $config;
|
2018-10-19 12:01:22 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
require_once $config['homedir'].'/include/functions.php';
|
2019-07-17 17:40:49 +02:00
|
|
|
require_once $config['homedir'].'/include/graphs/functions_flot.php';
|
2018-10-19 12:01:22 +02:00
|
|
|
|
|
|
|
$ttl = get_parameter('ttl', 1);
|
|
|
|
$graph_type = get_parameter('graph_type', '');
|
|
|
|
|
|
|
|
if (!empty($graph_type)) {
|
2019-01-30 16:18:44 +01:00
|
|
|
include_once $config['homedir'].'/include/functions_html.php';
|
|
|
|
include_once $config['homedir'].'/include/graphs/functions_gd.php';
|
|
|
|
include_once $config['homedir'].'/include/graphs/functions_utils.php';
|
|
|
|
include_once $config['homedir'].'/include/graphs/functions_d3.php';
|
|
|
|
include_once $config['homedir'].'/include/graphs/functions_flot.php';
|
2018-10-19 12:01:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Clean the output buffer and turn off output buffering
|
2019-01-30 16:18:44 +01:00
|
|
|
ob_end_clean();
|
|
|
|
|
|
|
|
switch ($graph_type) {
|
|
|
|
case 'histogram':
|
|
|
|
$width = get_parameter('width');
|
|
|
|
$height = get_parameter('height');
|
|
|
|
$data = json_decode(io_safe_output(get_parameter('data')), true);
|
|
|
|
|
|
|
|
$max = get_parameter('max');
|
|
|
|
$title = get_parameter('title');
|
|
|
|
$mode = get_parameter('mode', 1);
|
|
|
|
gd_histogram($width, $height, $mode, $data, $max, $config['fontpath'], $title);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'progressbar':
|
|
|
|
$width = get_parameter('width');
|
|
|
|
$height = get_parameter('height');
|
|
|
|
$progress = get_parameter('progress');
|
|
|
|
|
|
|
|
$out_of_lim_str = io_safe_output(get_parameter('out_of_lim_str', false));
|
|
|
|
$out_of_lim_image = get_parameter('out_of_lim_image', false);
|
|
|
|
|
2020-01-22 10:17:35 +01:00
|
|
|
// Add relative path to avoid phar object injection.
|
|
|
|
$out_of_lim_image = '../graphs/'.$out_of_lim_image;
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
$title = get_parameter('title');
|
|
|
|
|
|
|
|
$mode = get_parameter('mode', 1);
|
|
|
|
|
|
|
|
$fontsize = get_parameter('fontsize', 10);
|
|
|
|
|
|
|
|
$value_text = get_parameter('value_text', '');
|
|
|
|
$colorRGB = get_parameter('colorRGB', '');
|
|
|
|
|
|
|
|
gd_progress_bar(
|
|
|
|
$width,
|
|
|
|
$height,
|
|
|
|
$progress,
|
|
|
|
$title,
|
|
|
|
$config['fontpath'],
|
|
|
|
$out_of_lim_str,
|
|
|
|
$out_of_lim_image,
|
|
|
|
$mode,
|
|
|
|
$fontsize,
|
|
|
|
$value_text,
|
|
|
|
$colorRGB
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'progressbubble':
|
|
|
|
$width = get_parameter('width');
|
|
|
|
$height = get_parameter('height');
|
|
|
|
$progress = get_parameter('progress');
|
|
|
|
|
|
|
|
$out_of_lim_str = io_safe_output(get_parameter('out_of_lim_str', false));
|
|
|
|
$out_of_lim_image = get_parameter('out_of_lim_image', false);
|
|
|
|
|
|
|
|
$title = get_parameter('title');
|
|
|
|
|
|
|
|
$mode = get_parameter('mode', 1);
|
|
|
|
|
|
|
|
$fontsize = get_parameter('fontsize', 7);
|
|
|
|
|
|
|
|
$value_text = get_parameter('value_text', '');
|
|
|
|
$colorRGB = get_parameter('colorRGB', '');
|
|
|
|
|
|
|
|
gd_progress_bubble(
|
|
|
|
$width,
|
|
|
|
$height,
|
|
|
|
$progress,
|
|
|
|
$title,
|
|
|
|
$config['fontpath'],
|
|
|
|
$out_of_lim_str,
|
|
|
|
$out_of_lim_image,
|
|
|
|
$mode,
|
|
|
|
$fontsize,
|
|
|
|
$value_text,
|
|
|
|
$colorRGB
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
2018-10-19 12:01:22 +02:00
|
|
|
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
function progressbar(
|
|
|
|
$progress,
|
|
|
|
$width,
|
|
|
|
$height,
|
|
|
|
$title,
|
|
|
|
$font,
|
|
|
|
$mode=1,
|
|
|
|
$out_of_lim_str=false,
|
|
|
|
$out_of_lim_image=false,
|
|
|
|
$ttl=1
|
|
|
|
) {
|
|
|
|
$graph = [];
|
|
|
|
|
|
|
|
$graph['progress'] = $progress;
|
|
|
|
$graph['width'] = $width;
|
|
|
|
$graph['height'] = $height;
|
|
|
|
$graph['out_of_lim_str'] = $out_of_lim_str;
|
|
|
|
$graph['out_of_lim_image'] = $out_of_lim_image;
|
|
|
|
$graph['title'] = $title;
|
|
|
|
$graph['font'] = $font;
|
|
|
|
$graph['mode'] = $mode;
|
|
|
|
|
|
|
|
$id_graph = serialize_in_temp($graph, null, $ttl);
|
|
|
|
if (is_metaconsole()) {
|
|
|
|
return "<img src='../../include/graphs/functions_gd.php?static_graph=1&graph_type=progressbar&ttl=".$ttl.'&id_graph='.$id_graph."'>";
|
|
|
|
} else {
|
|
|
|
return "<img src='include/graphs/functions_gd.php?static_graph=1&graph_type=progressbar&ttl=".$ttl.'&id_graph='.$id_graph."'>";
|
|
|
|
}
|
2018-10-19 12:01:22 +02:00
|
|
|
}
|
|
|
|
|
2011-04-14 10:25:41 +02:00
|
|
|
|
2020-03-26 12:29:38 +01:00
|
|
|
/**
|
|
|
|
* Draw vertical bars graph.
|
|
|
|
*
|
2023-01-19 17:50:27 +01:00
|
|
|
* @param array|null $chart_data Data chart.
|
|
|
|
* @param array $params Params draw chart.
|
|
|
|
* @param integer $ttl Pdf option.
|
2020-03-26 12:29:38 +01:00
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2018-03-01 12:02:08 +01:00
|
|
|
function vbar_graph(
|
2023-01-19 17:50:27 +01:00
|
|
|
array|null $chart_data,
|
2022-12-20 12:23:18 +01:00
|
|
|
array $options
|
2019-01-30 16:18:44 +01:00
|
|
|
) {
|
2022-12-16 10:38:37 +01:00
|
|
|
if (empty($chart_data) === true) {
|
2022-12-20 12:23:18 +01:00
|
|
|
if (isset($options['ttl']) === true
|
|
|
|
&& (int) $options['ttl'] === 2
|
|
|
|
) {
|
|
|
|
$options['base64'] = true;
|
|
|
|
}
|
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
return graph_nodata_image($options);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['ttl']) === true && (int) $options['ttl'] === 2) {
|
|
|
|
$params = [
|
|
|
|
'chart_data' => $chart_data,
|
|
|
|
'options' => $options,
|
|
|
|
'return_img_base_64' => true,
|
|
|
|
];
|
|
|
|
|
|
|
|
return generator_chart_to_pdf('vbar_graph', $params);
|
|
|
|
}
|
|
|
|
|
|
|
|
$chart = get_build_setup_charts('BAR', $options, $chart_data);
|
|
|
|
$output = $chart->render(true);
|
|
|
|
return $output;
|
2011-03-30 14:34:25 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
|
2018-02-27 16:28:00 +01:00
|
|
|
function area_graph(
|
2019-01-30 16:18:44 +01:00
|
|
|
$agent_module_id,
|
|
|
|
$array_data,
|
|
|
|
$legend,
|
|
|
|
$series_type,
|
|
|
|
$color,
|
|
|
|
$date_array,
|
|
|
|
$data_module_graph,
|
|
|
|
$params,
|
|
|
|
$water_mark,
|
|
|
|
$array_events_alerts
|
|
|
|
) {
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
include_once 'functions_flot.php';
|
|
|
|
|
2020-03-26 12:29:38 +01:00
|
|
|
if ($water_mark !== false) {
|
|
|
|
setup_watermark($water_mark, $water_mark_file, $water_mark_url);
|
|
|
|
}
|
2019-01-30 16:18:44 +01:00
|
|
|
|
|
|
|
return flot_area_graph(
|
|
|
|
$agent_module_id,
|
|
|
|
$array_data,
|
|
|
|
$legend,
|
|
|
|
$series_type,
|
|
|
|
$color,
|
|
|
|
$date_array,
|
|
|
|
$data_module_graph,
|
|
|
|
$params,
|
|
|
|
$water_mark,
|
|
|
|
$array_events_alerts
|
|
|
|
);
|
2011-04-07 19:36:08 +02:00
|
|
|
}
|
|
|
|
|
2018-02-27 16:28:00 +01:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
function stacked_bullet_chart(
|
|
|
|
$chart_data,
|
|
|
|
$width,
|
|
|
|
$height,
|
|
|
|
$color,
|
|
|
|
$legend,
|
|
|
|
$long_index,
|
|
|
|
$no_data_image,
|
|
|
|
$xaxisname='',
|
|
|
|
$yaxisname='',
|
|
|
|
$water_mark='',
|
|
|
|
$font='',
|
|
|
|
$font_size='',
|
|
|
|
$unit='',
|
|
|
|
$ttl=1,
|
|
|
|
$homeurl='',
|
|
|
|
$backgroundColor='white'
|
|
|
|
) {
|
|
|
|
include_once 'functions_d3.php';
|
|
|
|
|
2020-03-26 12:29:38 +01:00
|
|
|
if ($water_mark !== false) {
|
|
|
|
setup_watermark($water_mark, $water_mark_file, $water_mark_url);
|
|
|
|
}
|
2019-01-30 16:18:44 +01:00
|
|
|
|
|
|
|
if (empty($chart_data)) {
|
|
|
|
return '<img src="'.$no_data_image.'" />';
|
|
|
|
}
|
|
|
|
|
|
|
|
return d3_bullet_chart(
|
|
|
|
$chart_data,
|
|
|
|
$width,
|
|
|
|
$height,
|
|
|
|
$color,
|
|
|
|
$legend,
|
|
|
|
$homeurl,
|
|
|
|
$unit,
|
|
|
|
$font,
|
|
|
|
$font_size
|
|
|
|
);
|
2018-02-27 16:28:00 +01:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
2018-02-27 16:28:00 +01:00
|
|
|
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
function stacked_gauge(
|
|
|
|
$chart_data,
|
|
|
|
$width,
|
|
|
|
$height,
|
|
|
|
$color,
|
|
|
|
$legend,
|
|
|
|
$no_data_image,
|
|
|
|
$font='',
|
|
|
|
$font_size='',
|
|
|
|
$unit='',
|
2020-06-01 14:48:53 +02:00
|
|
|
$homeurl='',
|
|
|
|
$transitionDuration=500
|
2019-01-30 16:18:44 +01:00
|
|
|
) {
|
|
|
|
include_once 'functions_d3.php';
|
|
|
|
|
|
|
|
if (empty($chart_data)) {
|
|
|
|
return '<img src="'.$no_data_image.'" />';
|
|
|
|
}
|
|
|
|
|
|
|
|
return d3_gauges(
|
|
|
|
$chart_data,
|
|
|
|
$width,
|
|
|
|
$height,
|
|
|
|
$color,
|
|
|
|
$legend,
|
|
|
|
$homeurl,
|
|
|
|
$unit,
|
|
|
|
$font,
|
|
|
|
($font_size + 2),
|
2020-06-01 14:48:53 +02:00
|
|
|
$no_data_image,
|
|
|
|
$transitionDuration
|
2019-01-30 16:18:44 +01:00
|
|
|
);
|
2015-11-04 17:42:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
function hbar_graph(
|
|
|
|
$chart_data,
|
|
|
|
$width,
|
|
|
|
$height,
|
|
|
|
$color,
|
|
|
|
$legend,
|
|
|
|
$long_index,
|
|
|
|
$no_data_image,
|
|
|
|
$xaxisname='',
|
|
|
|
$yaxisname='',
|
|
|
|
$water_mark='',
|
|
|
|
$font='',
|
|
|
|
$font_size='',
|
|
|
|
$unit='',
|
|
|
|
$ttl=1,
|
|
|
|
$homeurl='',
|
|
|
|
$backgroundColor='white',
|
|
|
|
$tick_color='white',
|
|
|
|
$val_min=null,
|
2020-01-24 15:13:42 +01:00
|
|
|
$val_max=null,
|
2021-06-10 10:19:11 +02:00
|
|
|
$base64=false,
|
|
|
|
$pdf=false
|
2019-01-30 16:18:44 +01:00
|
|
|
) {
|
2021-04-09 11:52:28 +02:00
|
|
|
global $config;
|
2020-03-26 12:29:38 +01:00
|
|
|
if ($water_mark !== false) {
|
|
|
|
setup_watermark($water_mark, $water_mark_file, $water_mark_url);
|
|
|
|
}
|
2019-01-30 16:18:44 +01:00
|
|
|
|
2020-01-27 16:15:54 +01:00
|
|
|
if ($chart_data === false || empty($chart_data) === true) {
|
2022-12-13 09:10:13 +01:00
|
|
|
return graph_nodata_image($options);
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($ttl == 2) {
|
|
|
|
$params = [
|
2020-01-24 15:13:42 +01:00
|
|
|
'chart_data' => $chart_data,
|
|
|
|
'width' => $width,
|
|
|
|
'height' => $height,
|
|
|
|
'water_mark_url' => $water_mark_url,
|
|
|
|
'font' => $font,
|
|
|
|
'font_size' => $font_size,
|
|
|
|
'backgroundColor' => $backgroundColor,
|
|
|
|
'tick_color' => $tick_color,
|
|
|
|
'val_min' => $val_min,
|
|
|
|
'val_max' => $val_max,
|
|
|
|
'return_img_base_64' => $base64,
|
2019-01-30 16:18:44 +01:00
|
|
|
];
|
|
|
|
return generator_chart_to_pdf('hbar', $params);
|
|
|
|
}
|
|
|
|
|
2022-01-17 10:22:30 +01:00
|
|
|
if ($config['style'] === 'pandora_black' && !is_metaconsole() && $ttl === 1) {
|
2021-06-10 10:19:11 +02:00
|
|
|
$backgroundColor = '#222';
|
|
|
|
}
|
|
|
|
|
2022-01-17 10:22:30 +01:00
|
|
|
if ($config['style'] === 'pandora_black' && !is_metaconsole() && $ttl === 1) {
|
2021-04-09 11:52:28 +02:00
|
|
|
$tick_color = '#fff';
|
|
|
|
}
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
return flot_hcolumn_chart(
|
|
|
|
$chart_data,
|
|
|
|
$width,
|
|
|
|
$height,
|
|
|
|
$water_mark_url,
|
|
|
|
$font,
|
|
|
|
$font_size,
|
|
|
|
$backgroundColor,
|
|
|
|
$tick_color,
|
|
|
|
$val_min,
|
2021-06-10 10:19:11 +02:00
|
|
|
$val_max,
|
|
|
|
$pdf
|
2019-01-30 16:18:44 +01:00
|
|
|
);
|
2011-03-30 14:34:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
/**
|
|
|
|
* Pie graph PIE.
|
|
|
|
*
|
|
|
|
* @param array $chart_data Data.
|
|
|
|
* @param array $options Options.
|
|
|
|
*
|
|
|
|
* @return string Output html charts
|
|
|
|
*/
|
2019-01-30 16:18:44 +01:00
|
|
|
function pie_graph(
|
|
|
|
$chart_data,
|
2022-12-13 09:10:13 +01:00
|
|
|
$options
|
2019-01-30 16:18:44 +01:00
|
|
|
) {
|
2020-03-26 12:29:38 +01:00
|
|
|
if (empty($chart_data) === true) {
|
2022-12-20 12:23:18 +01:00
|
|
|
if (isset($options['ttl']) === true
|
|
|
|
&& (int) $options['ttl'] === 2
|
|
|
|
) {
|
|
|
|
$options['base64'] = true;
|
|
|
|
}
|
|
|
|
|
2022-12-13 09:10:13 +01:00
|
|
|
return graph_nodata_image($options);
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
// Number max elements.
|
2022-12-22 23:03:52 +01:00
|
|
|
$max_values = (isset($options['maxValues']) === true) ? $options['maxValues'] : 15;
|
2022-12-16 10:38:37 +01:00
|
|
|
if (count($chart_data) > $max_values) {
|
|
|
|
$others_str = (isset($options['otherStr']) === true) ? $options['otherStr'] : __('Others');
|
2019-01-30 16:18:44 +01:00
|
|
|
$chart_data_trunc = [];
|
|
|
|
$n = 1;
|
|
|
|
foreach ($chart_data as $key => $value) {
|
2022-12-22 23:03:52 +01:00
|
|
|
if ($n <= $max_values) {
|
2019-01-30 16:18:44 +01:00
|
|
|
$chart_data_trunc[$key] = $value;
|
|
|
|
} else {
|
2022-12-22 23:03:52 +01:00
|
|
|
if (isset($options['labels'][$key]) === true) {
|
|
|
|
unset($options['labels'][$key]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($chart_data_trunc[$others_str]) === false) {
|
2019-01-30 16:18:44 +01:00
|
|
|
$chart_data_trunc[$others_str] = 0;
|
|
|
|
}
|
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
if (empty($value) === false) {
|
2022-12-22 23:03:52 +01:00
|
|
|
$chart_data_trunc[$others_str] += (float) $value;
|
2022-12-16 10:38:37 +01:00
|
|
|
}
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$n++;
|
|
|
|
}
|
|
|
|
|
2022-12-22 23:03:52 +01:00
|
|
|
$options['labels'][$max_values] = $others_str;
|
2019-01-30 16:18:44 +01:00
|
|
|
$chart_data = $chart_data_trunc;
|
2022-12-16 10:38:37 +01:00
|
|
|
}
|
2019-01-30 16:18:44 +01:00
|
|
|
|
2022-12-16 14:28:04 +01:00
|
|
|
if (isset($options['ttl']) === true
|
|
|
|
&& (int) $options['ttl'] === 2
|
|
|
|
) {
|
2019-01-30 16:18:44 +01:00
|
|
|
$params = [
|
2022-12-16 10:38:37 +01:00
|
|
|
'chart_data' => $chart_data,
|
|
|
|
'options' => $options,
|
|
|
|
'return_img_base_64' => true,
|
2019-01-30 16:18:44 +01:00
|
|
|
];
|
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
return generator_chart_to_pdf('pie_graph', $params);
|
|
|
|
}
|
2019-01-30 16:18:44 +01:00
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
$chart = get_build_setup_charts('PIE', $options, $chart_data);
|
|
|
|
$output = $chart->render(true, true);
|
|
|
|
return $output;
|
2016-06-10 11:11:11 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
|
2022-12-13 09:10:13 +01:00
|
|
|
/**
|
|
|
|
* Rin graph DOUGHNUT.
|
|
|
|
*
|
|
|
|
* @param array $chart_data Data.
|
|
|
|
* @param array $options Options.
|
|
|
|
*
|
|
|
|
* @return string Output html charts
|
|
|
|
*/
|
2019-01-30 16:18:44 +01:00
|
|
|
function ring_graph(
|
|
|
|
$chart_data,
|
2022-12-13 09:10:13 +01:00
|
|
|
$options
|
2019-01-30 16:18:44 +01:00
|
|
|
) {
|
2022-12-13 09:10:13 +01:00
|
|
|
global $config;
|
2022-12-16 10:38:37 +01:00
|
|
|
|
2022-12-13 09:10:13 +01:00
|
|
|
if (empty($chart_data) === true) {
|
2022-12-23 11:34:35 +01:00
|
|
|
if (isset($options['ttl']) === true
|
|
|
|
&& (int) $options['ttl'] === 2
|
|
|
|
) {
|
|
|
|
$options['base64'] = true;
|
|
|
|
}
|
|
|
|
|
2022-12-13 09:10:13 +01:00
|
|
|
return graph_nodata_image($options);
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
if (isset($options['ttl']) === true && (int) $options['ttl'] === 2) {
|
2019-01-30 16:18:44 +01:00
|
|
|
$params = [
|
2022-12-13 09:10:13 +01:00
|
|
|
'chart_data' => $chart_data,
|
|
|
|
'options' => $options,
|
|
|
|
'return_img_base_64' => true,
|
2019-01-30 16:18:44 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
return generator_chart_to_pdf('ring_graph', $params);
|
|
|
|
}
|
|
|
|
|
2022-12-13 09:10:13 +01:00
|
|
|
$chart = get_build_setup_charts('DOUGHNUT', $options, $chart_data);
|
|
|
|
$output = $chart->render(true, true);
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function get_build_setup_charts($type, $options, $data)
|
|
|
|
{
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
$factory = new Factory();
|
|
|
|
|
|
|
|
switch ($type) {
|
|
|
|
case 'DOUGHNUT':
|
|
|
|
$chart = $factory->create($factory::DOUGHNUT);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'PIE':
|
|
|
|
$chart = $factory->create($factory::PIE);
|
|
|
|
break;
|
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
case 'BAR':
|
|
|
|
$chart = $factory->create($factory::BAR);
|
|
|
|
break;
|
|
|
|
|
2022-12-13 09:10:13 +01:00
|
|
|
default:
|
|
|
|
// code...
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$example = [
|
|
|
|
'id' => null,
|
|
|
|
'width' => null,
|
|
|
|
'height' => null,
|
|
|
|
'maintainAspectRatio' => false,
|
|
|
|
'responsive' => true,
|
|
|
|
'radius' => null,
|
|
|
|
'rotation' => null,
|
|
|
|
'circumference' => null,
|
2022-12-16 10:38:37 +01:00
|
|
|
'axis' => 'y',
|
2022-12-13 09:10:13 +01:00
|
|
|
'legend' => [
|
|
|
|
'display' => true,
|
|
|
|
'position' => 'top',
|
|
|
|
'align' => 'center',
|
|
|
|
'font' => [
|
|
|
|
'family' => '',
|
|
|
|
'size' => 12,
|
|
|
|
'style' => 'normal',
|
|
|
|
'weight' => null,
|
|
|
|
'lineHeight' => 1.2,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'title' => [
|
|
|
|
'display' => true,
|
|
|
|
'position' => 'top',
|
|
|
|
'color' => '',
|
|
|
|
'align' => 'center',
|
|
|
|
'text' => '',
|
|
|
|
'font' => [
|
|
|
|
'family' => '',
|
|
|
|
'size' => 12,
|
|
|
|
'style' => 'normal',
|
|
|
|
'weight' => null,
|
|
|
|
'lineHeight' => 1.2,
|
|
|
|
],
|
|
|
|
],
|
2022-12-16 10:38:37 +01:00
|
|
|
'dataLabel' => [
|
|
|
|
'display' => true,
|
|
|
|
'color' => '',
|
|
|
|
'clip' => true,
|
|
|
|
'clamp' => true,
|
2022-12-16 14:28:04 +01:00
|
|
|
'anchor' => 'center',
|
2022-12-16 10:38:37 +01:00
|
|
|
'formatter' => 'namefunction',
|
|
|
|
'fonts' => [
|
|
|
|
'family' => '',
|
|
|
|
'size' => 12,
|
|
|
|
'style' => 'normal',
|
|
|
|
'weight' => null,
|
|
|
|
'lineHeight' => 1.2,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'scales' => [
|
|
|
|
'x' => [
|
|
|
|
'grid' => [
|
|
|
|
'display' => false,
|
|
|
|
'color' => 'orange',
|
|
|
|
],
|
|
|
|
'ticks' => [
|
|
|
|
'fonts' => [
|
|
|
|
'family' => '',
|
|
|
|
'size' => 12,
|
|
|
|
'style' => 'normal',
|
|
|
|
'weight' => null,
|
|
|
|
'lineHeight' => 1.2,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'y' => [
|
|
|
|
'grid' => [
|
|
|
|
'display' => false,
|
|
|
|
'color' => 'orange',
|
|
|
|
],
|
|
|
|
'ticks' => [
|
|
|
|
'fonts' => [
|
|
|
|
'family' => '',
|
|
|
|
'size' => 12,
|
|
|
|
'style' => 'normal',
|
|
|
|
'weight' => null,
|
|
|
|
'lineHeight' => 1.2,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
2022-12-13 09:10:13 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
// Set Id.
|
|
|
|
$id = uniqid('graph_');
|
|
|
|
if (isset($options['id']) === true && empty($options['id']) === false) {
|
|
|
|
$id = $options['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$chart->setId($id);
|
|
|
|
|
|
|
|
// Height is null maximum possible.
|
|
|
|
if (isset($options['height']) === true
|
|
|
|
&& empty($options['height']) === false
|
|
|
|
) {
|
|
|
|
$chart->setHeight($options['height']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Width is null maximum possible.
|
|
|
|
if (isset($options['width']) === true
|
|
|
|
&& empty($options['width']) === false
|
|
|
|
) {
|
|
|
|
$chart->setWidth($options['width']);
|
|
|
|
}
|
|
|
|
|
2022-12-20 12:23:18 +01:00
|
|
|
// Fonts defaults.
|
|
|
|
$chart->defaults()->getFonts()->setFamily((empty($config['fontpath']) === true) ? 'Lato' : $config['fontpath']);
|
2022-12-16 14:28:04 +01:00
|
|
|
$chart->defaults()->getFonts()->setStyle('normal');
|
2022-12-20 12:23:18 +01:00
|
|
|
$chart->defaults()->getFonts()->setWeight(600);
|
|
|
|
$chart->defaults()->getFonts()->setSize(((int) $config['font_size'] + 2));
|
2022-12-13 09:10:13 +01:00
|
|
|
|
|
|
|
if (isset($options['waterMark']) === true
|
|
|
|
&& empty($options['waterMark']) === false
|
|
|
|
) {
|
|
|
|
// WaterMark.
|
|
|
|
$chart->defaults()->getWaterMark()->setWidth(88);
|
|
|
|
$chart->defaults()->getWaterMark()->setHeight(16);
|
|
|
|
$chart->defaults()->getWaterMark()->setSrc($options['waterMark']['url']);
|
|
|
|
$chart->defaults()->getWaterMark()->setPosition('end');
|
|
|
|
$chart->defaults()->getWaterMark()->setAlign('top');
|
|
|
|
}
|
|
|
|
|
2022-12-16 14:28:04 +01:00
|
|
|
if ((isset($options['pdf']) === true && $options['pdf'] === true)
|
|
|
|
|| (isset($options['ttl']) === true && (int) $options['ttl'] === 2)
|
|
|
|
) {
|
2022-12-13 09:10:13 +01:00
|
|
|
$chart->options()->disableAnimation(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set Maintain Aspect Ratio for responsive charts.
|
|
|
|
$maintainAspectRatio = false;
|
|
|
|
if (isset($options['maintainAspectRatio']) === true
|
|
|
|
&& empty($options['maintainAspectRatio']) === false
|
|
|
|
) {
|
|
|
|
$maintainAspectRatio = $options['maintainAspectRatio'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$chart->options()->setMaintainAspectRatio($maintainAspectRatio);
|
|
|
|
|
|
|
|
// Set Responsive for responsive charts.
|
|
|
|
$responsive = true;
|
|
|
|
if (isset($options['responsive']) === true
|
|
|
|
&& empty($options['responsive']) === false
|
|
|
|
) {
|
|
|
|
$responsive = $options['responsive'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$chart->options()->setResponsive($responsive);
|
|
|
|
|
|
|
|
// LEGEND.
|
2022-12-21 10:07:18 +01:00
|
|
|
if (isset($options['legend']) === true
|
|
|
|
&& empty($options['legend']) === false
|
|
|
|
&& is_array($options['legend']) === true
|
|
|
|
) {
|
|
|
|
$legend = $chart->options()->getPlugins()->getLegend();
|
|
|
|
|
|
|
|
// Set Display legends.
|
|
|
|
$legendDisplay = true;
|
|
|
|
if (isset($options['legend']['display']) === true) {
|
|
|
|
$legendDisplay = $options['legend']['display'];
|
|
|
|
}
|
2022-12-13 09:10:13 +01:00
|
|
|
|
2022-12-21 10:07:18 +01:00
|
|
|
$legend->setDisplay($legendDisplay);
|
2022-12-13 09:10:13 +01:00
|
|
|
|
2022-12-21 10:07:18 +01:00
|
|
|
// Set Position legends.
|
|
|
|
$legendPosition = 'top';
|
|
|
|
if (isset($options['legend']['position']) === true
|
|
|
|
&& empty($options['legend']['position']) === false
|
|
|
|
) {
|
|
|
|
$legendPosition = $options['legend']['position'];
|
|
|
|
}
|
2022-12-13 09:10:13 +01:00
|
|
|
|
2022-12-21 10:07:18 +01:00
|
|
|
$legend->setPosition($legendPosition);
|
2022-12-13 09:10:13 +01:00
|
|
|
|
2022-12-21 10:07:18 +01:00
|
|
|
// Set Align legends.
|
|
|
|
$legendAlign = 'center';
|
|
|
|
if (isset($options['legend']['align']) === true
|
|
|
|
&& empty($options['legend']['align']) === false
|
|
|
|
) {
|
|
|
|
$legendAlign = $options['legend']['align'];
|
|
|
|
}
|
2022-12-13 09:10:13 +01:00
|
|
|
|
2022-12-21 10:07:18 +01:00
|
|
|
$legend->setAlign($legendAlign);
|
|
|
|
|
|
|
|
// Defaults fonts legends.
|
2023-03-13 19:30:51 +01:00
|
|
|
$legend->labels()->getFonts()->setFamily((empty($config['fontpath']) === true) ? 'lato' : $config['fontpath']);
|
2022-12-21 12:33:53 +01:00
|
|
|
$legend->labels()->getFonts()->setStyle('normal');
|
|
|
|
$legend->labels()->getFonts()->setWeight(600);
|
|
|
|
$legend->labels()->getFonts()->setSize(((int) $config['font_size'] + 2));
|
2022-12-21 10:07:18 +01:00
|
|
|
if (isset($options['legend']['fonts']) === true
|
|
|
|
&& empty($options['legend']['fonts']) === false
|
|
|
|
&& is_array($options['legend']['fonts']) === true
|
|
|
|
) {
|
|
|
|
if (isset($options['legend']['fonts']['size']) === true) {
|
|
|
|
$legend->labels()->getFonts()->setSize($options['legend']['fonts']['size']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['legend']['fonts']['style']) === true) {
|
|
|
|
$legend->labels()->getFonts()->setStyle($options['legend']['fonts']['style']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['legend']['fonts']['weight']) === true) {
|
|
|
|
$legend->labels()->getFonts()->setWeight($options['legend']['fonts']['weight']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['legend']['fonts']['family']) === true) {
|
|
|
|
$legend->labels()->getFonts()->setFamily($options['legend']['fonts']['family']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-13 09:10:13 +01:00
|
|
|
|
2022-12-16 14:28:04 +01:00
|
|
|
if (isset($options['layout']) === true
|
|
|
|
&& empty($options['layout']) === false
|
|
|
|
&& is_array($options['layout']) === true
|
|
|
|
) {
|
|
|
|
$layout = $chart->options()->getLayout();
|
|
|
|
if (isset($options['layout']['padding']) === true
|
|
|
|
&& empty($options['layout']['padding']) === false
|
|
|
|
&& is_array($options['layout']['padding']) === true
|
|
|
|
) {
|
|
|
|
if (isset($options['layout']['padding']['top']) === true) {
|
|
|
|
$layout->padding()->setTop($options['layout']['padding']['top']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['layout']['padding']['bottom']) === true) {
|
|
|
|
$layout->padding()->setBottom($options['layout']['padding']['bottom']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['layout']['padding']['left']) === true) {
|
|
|
|
$layout->padding()->setLeft($options['layout']['padding']['left']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['layout']['padding']['right']) === true) {
|
|
|
|
$layout->padding()->setRight($options['layout']['padding']['right']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
// Display labels.
|
|
|
|
if (isset($options['dataLabel']) === true
|
|
|
|
&& empty($options['dataLabel']) === false
|
|
|
|
&& is_array($options['dataLabel']) === true
|
|
|
|
) {
|
|
|
|
$dataLabel = $chart->options()->getPlugins()->getDataLabel();
|
|
|
|
|
|
|
|
$chart->addPlugin('ChartDataLabels');
|
|
|
|
|
|
|
|
$dataLabelDisplay = 'auto';
|
|
|
|
if (isset($options['dataLabel']['display']) === true) {
|
|
|
|
$dataLabelDisplay = $options['dataLabel']['display'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$dataLabel->setDisplay($dataLabelDisplay);
|
|
|
|
|
2022-12-16 14:28:04 +01:00
|
|
|
$dataLabelColor = '#343434';
|
2022-12-16 10:38:37 +01:00
|
|
|
if (isset($options['dataLabel']['color']) === true) {
|
|
|
|
$dataLabelColor = $options['dataLabel']['color'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$dataLabel->setColor($dataLabelColor);
|
|
|
|
|
2022-12-16 14:28:04 +01:00
|
|
|
$dataLabelClip = false;
|
2022-12-16 10:38:37 +01:00
|
|
|
if (isset($options['dataLabel']['clip']) === true) {
|
|
|
|
$dataLabelClip = $options['dataLabel']['clip'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$dataLabel->setClip($dataLabelClip);
|
|
|
|
|
|
|
|
$dataLabelClamp = true;
|
|
|
|
if (isset($options['dataLabel']['clamp']) === true) {
|
|
|
|
$dataLabelClamp = $options['dataLabel']['clamp'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$dataLabel->setClamp($dataLabelClamp);
|
|
|
|
|
2022-12-16 14:28:04 +01:00
|
|
|
$dataLabelAnchor = 'end';
|
|
|
|
if (isset($options['dataLabel']['anchor']) === true) {
|
|
|
|
$dataLabelAnchor = $options['dataLabel']['anchor'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$dataLabel->setAnchor($dataLabelAnchor);
|
|
|
|
|
|
|
|
$dataLabelAlign = 'end';
|
|
|
|
if (isset($options['dataLabel']['align']) === true) {
|
|
|
|
$dataLabelAlign = $options['dataLabel']['align'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$dataLabel->setAlign($dataLabelAlign);
|
|
|
|
|
|
|
|
$dataLabelOffset = 0;
|
|
|
|
if (isset($options['dataLabel']['offset']) === true) {
|
|
|
|
$dataLabelOffset = $options['dataLabel']['offset'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$dataLabel->setOffset($dataLabelOffset);
|
|
|
|
|
2022-12-22 23:03:52 +01:00
|
|
|
switch ($type) {
|
|
|
|
case 'DOUGHNUT':
|
|
|
|
case 'PIE':
|
|
|
|
$dataLabelFormatter = 'formatterDataLabelPie';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'BAR':
|
|
|
|
if (isset($options['axis']) === true
|
|
|
|
&& empty($options['axis']) === false
|
|
|
|
) {
|
|
|
|
$dataLabelFormatter = 'formatterDataHorizontalBar';
|
|
|
|
} else {
|
|
|
|
$dataLabelFormatter = 'formatterDataVerticalBar';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// Not possible.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
if (isset($options['dataLabel']['formatter']) === true) {
|
|
|
|
$dataLabelFormatter = $options['dataLabel']['formatter'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$dataLabel->setFormatter($dataLabelFormatter);
|
|
|
|
|
2022-12-20 12:23:18 +01:00
|
|
|
// Defaults fonts datalabel.
|
2023-03-13 19:30:51 +01:00
|
|
|
$dataLabel->getFonts()->setFamily((empty($config['fontpath']) === true) ? 'lato' : $config['fontpath']);
|
2022-12-20 12:23:18 +01:00
|
|
|
$dataLabel->getFonts()->setStyle('normal');
|
|
|
|
$dataLabel->getFonts()->setWeight(600);
|
|
|
|
$dataLabel->getFonts()->setSize(((int) $config['font_size'] + 2));
|
2022-12-16 14:28:04 +01:00
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
if (isset($options['dataLabel']['fonts']) === true
|
|
|
|
&& empty($options['dataLabel']['fonts']) === false
|
|
|
|
&& is_array($options['dataLabel']['fonts']) === true
|
|
|
|
) {
|
|
|
|
if (isset($options['dataLabel']['fonts']['size']) === true) {
|
|
|
|
$dataLabel->getFonts()->setSize($options['dataLabel']['fonts']['size']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['dataLabel']['fonts']['style']) === true) {
|
|
|
|
$dataLabel->getFonts()->setStyle($options['dataLabel']['fonts']['style']);
|
|
|
|
}
|
|
|
|
|
2022-12-20 12:23:18 +01:00
|
|
|
if (isset($options['dataLabel']['fonts']['weight']) === true) {
|
|
|
|
$dataLabel->getFonts()->setWeight($options['dataLabel']['fonts']['weight']);
|
|
|
|
}
|
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
if (isset($options['dataLabel']['fonts']['family']) === true) {
|
|
|
|
$dataLabel->getFonts()->setFamily($options['dataLabel']['fonts']['family']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-13 09:10:13 +01:00
|
|
|
// Title.
|
|
|
|
if (isset($options['title']) === true
|
|
|
|
&& empty($options['title']) === false
|
|
|
|
&& is_array($options['title']) === true
|
|
|
|
) {
|
2022-12-20 12:23:18 +01:00
|
|
|
$chartTitle = $chart->options()->getPlugins()->getTitle();
|
|
|
|
|
2022-12-13 09:10:13 +01:00
|
|
|
$display = false;
|
|
|
|
if (isset($options['title']['display']) === true) {
|
|
|
|
$display = $options['title']['display'];
|
|
|
|
}
|
|
|
|
|
2022-12-20 12:23:18 +01:00
|
|
|
$chartTitle->setDisplay($display);
|
2022-12-13 09:10:13 +01:00
|
|
|
|
|
|
|
$text = __('Title');
|
|
|
|
if (isset($options['title']['text']) === true) {
|
|
|
|
$text = $options['title']['text'];
|
|
|
|
}
|
|
|
|
|
2022-12-20 12:23:18 +01:00
|
|
|
$chartTitle->setText($text);
|
2022-12-13 09:10:13 +01:00
|
|
|
|
|
|
|
$position = 'top';
|
|
|
|
if (isset($options['title']['position']) === true) {
|
|
|
|
$position = $options['title']['position'];
|
|
|
|
}
|
|
|
|
|
2022-12-20 12:23:18 +01:00
|
|
|
$chartTitle->setPosition($position);
|
2022-12-13 09:10:13 +01:00
|
|
|
|
|
|
|
$color = 'top';
|
|
|
|
if (isset($options['title']['color']) === true) {
|
|
|
|
$color = $options['title']['color'];
|
|
|
|
}
|
|
|
|
|
2022-12-20 12:23:18 +01:00
|
|
|
$chartTitle->setColor($color);
|
2022-12-13 09:10:13 +01:00
|
|
|
|
|
|
|
if (isset($options['title']['fonts']) === true
|
|
|
|
&& empty($options['title']['fonts']) === false
|
|
|
|
&& is_array($options['title']['fonts']) === true
|
|
|
|
) {
|
|
|
|
if (isset($options['title']['fonts']['size']) === true) {
|
2022-12-20 12:23:18 +01:00
|
|
|
$chartTitle->getFonts()->setSize($options['title']['fonts']['size']);
|
2022-12-13 09:10:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['title']['fonts']['style']) === true) {
|
2022-12-20 12:23:18 +01:00
|
|
|
$chartTitle->getFonts()->setStyle($options['title']['fonts']['style']);
|
2022-12-13 09:10:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['title']['fonts']['family']) === true) {
|
2022-12-20 12:23:18 +01:00
|
|
|
$chartTitle->getFonts()->setFamily($options['title']['fonts']['family']);
|
2022-12-13 09:10:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Radius is null maximum possible.
|
|
|
|
if (isset($options['radius']) === true
|
|
|
|
&& empty($options['radius']) === false
|
|
|
|
) {
|
|
|
|
$chart->setRadius($options['radius']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rotation is null 0º.
|
|
|
|
if (isset($options['rotation']) === true
|
|
|
|
&& empty($options['rotation']) === false
|
|
|
|
) {
|
|
|
|
$chart->setRotation($options['rotation']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Circumferende is null 360º.
|
|
|
|
if (isset($options['circumference']) === true
|
|
|
|
&& empty($options['circumference']) === false
|
|
|
|
) {
|
|
|
|
$chart->setCircumference($options['circumference']);
|
|
|
|
}
|
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
if (isset($options['scales']) === true
|
|
|
|
&& empty($options['scales']) === false
|
|
|
|
&& is_array($options['scales']) === true
|
|
|
|
) {
|
|
|
|
$scales = $chart->options()->getScales();
|
2022-12-20 12:23:18 +01:00
|
|
|
|
|
|
|
// Defaults scalesFont X.
|
|
|
|
$scalesXFonts = $scales->getX()->ticks()->getFonts();
|
2023-03-13 19:30:51 +01:00
|
|
|
$scalesXFonts->setFamily((empty($config['fontpath']) === true) ? 'lato' : $config['fontpath']);
|
2022-12-20 12:23:18 +01:00
|
|
|
$scalesXFonts->setStyle('normal');
|
|
|
|
$scalesXFonts->setWeight(600);
|
|
|
|
$scalesXFonts->setSize(((int) $config['font_size'] + 2));
|
|
|
|
|
|
|
|
// Defaults scalesFont Y.
|
|
|
|
$scalesYFonts = $scales->getY()->ticks()->getFonts();
|
2023-03-13 19:30:51 +01:00
|
|
|
$scalesYFonts->setFamily((empty($config['fontpath']) === true) ? 'lato' : $config['fontpath']);
|
2022-12-20 12:23:18 +01:00
|
|
|
$scalesYFonts->setStyle('normal');
|
|
|
|
$scalesYFonts->setWeight(600);
|
|
|
|
$scalesYFonts->setSize(((int) $config['font_size'] + 2));
|
|
|
|
|
2022-12-16 10:38:37 +01:00
|
|
|
if (isset($options['scales']['x']) === true
|
|
|
|
&& empty($options['scales']['x']) === false
|
|
|
|
&& is_array($options['scales']['x']) === true
|
|
|
|
) {
|
|
|
|
if (isset($options['scales']['x']['bounds']) === true) {
|
|
|
|
$scales->getX()->setBounds($options['scales']['x']['bounds']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['scales']['x']['grid']) === true
|
|
|
|
&& empty($options['scales']['x']['grid']) === false
|
|
|
|
&& is_array($options['scales']['x']['grid']) === true
|
|
|
|
) {
|
|
|
|
if (isset($options['scales']['x']['grid']['display']) === true) {
|
|
|
|
$scales->getX()->grid()->setDrawOnChartArea($options['scales']['x']['grid']['display']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['scales']['x']['grid']['color']) === true) {
|
|
|
|
$scales->getX()->grid()->setColor($options['scales']['x']['grid']['color']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['scales']['x']['ticks']) === true
|
|
|
|
&& empty($options['scales']['x']['ticks']) === false
|
|
|
|
&& is_array($options['scales']['x']['ticks']) === true
|
|
|
|
) {
|
|
|
|
if (isset($options['scales']['x']['ticks']['fonts']) === true
|
|
|
|
&& empty($options['scales']['x']['ticks']['fonts']) === false
|
|
|
|
&& is_array($options['scales']['x']['ticks']['fonts']) === true
|
|
|
|
) {
|
|
|
|
$scaleXTicksFonts = $scales->getX()->ticks()->getFonts();
|
|
|
|
if (isset($options['scales']['x']['ticks']['fonts']['size']) === true) {
|
|
|
|
$scaleXTicksFonts->setSize($options['scales']['x']['ticks']['fonts']['size']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['scales']['x']['ticks']['fonts']['style']) === true) {
|
|
|
|
$scaleXTicksFonts->setStyle($options['scales']['x']['ticks']['fonts']['style']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['scales']['x']['ticks']['fonts']['family']) === true) {
|
|
|
|
$scaleXTicksFonts->setFamily($options['scales']['x']['ticks']['fonts']['family']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['scales']['y']) === true
|
|
|
|
&& empty($options['scales']['y']) === false
|
|
|
|
&& is_array($options['scales']['y']) === true
|
|
|
|
) {
|
|
|
|
if (isset($options['scales']['y']['bounds']) === true) {
|
|
|
|
$scales->getY()->setBounds($options['scales']['y']['bounds']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['scales']['y']['grid']) === true
|
|
|
|
&& empty($options['scales']['y']['grid']) === false
|
|
|
|
&& is_array($options['scales']['y']['grid']) === true
|
|
|
|
) {
|
|
|
|
if (isset($options['scales']['y']['grid']['display']) === true) {
|
|
|
|
$scales->getY()->grid()->setDrawOnChartArea($options['scales']['y']['grid']['display']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['scales']['y']['grid']['color']) === true) {
|
|
|
|
$scales->getY()->grid()->setColor($options['scales']['y']['grid']['color']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['scales']['y']['ticks']) === true
|
|
|
|
&& empty($options['scales']['y']['ticks']) === false
|
|
|
|
&& is_array($options['scales']['y']['ticks']) === true
|
|
|
|
) {
|
|
|
|
if (isset($options['scales']['y']['ticks']['fonts']) === true
|
|
|
|
&& empty($options['scales']['y']['ticks']['fonts']) === false
|
|
|
|
&& is_array($options['scales']['y']['ticks']['fonts']) === true
|
|
|
|
) {
|
|
|
|
$scaleYTicksFonts = $scales->getY()->ticks()->getFonts();
|
|
|
|
if (isset($options['scales']['y']['ticks']['fonts']['size']) === true) {
|
|
|
|
$scaleYTicksFonts->setSize($options['scales']['y']['ticks']['fonts']['size']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['scales']['y']['ticks']['fonts']['style']) === true) {
|
|
|
|
$scaleYTicksFonts->setStyle($options['scales']['y']['ticks']['fonts']['style']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options['scales']['y']['ticks']['fonts']['family']) === true) {
|
|
|
|
$scaleYTicksFonts->setFamily($options['scales']['y']['ticks']['fonts']['family']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-13 09:10:13 +01:00
|
|
|
// Color.
|
|
|
|
if (isset($options['colors']) === true
|
|
|
|
&& empty($options['colors']) === false
|
|
|
|
&& is_array($options['colors']) === true
|
|
|
|
) {
|
|
|
|
$colors = $options['colors'];
|
2022-12-16 10:38:37 +01:00
|
|
|
$borders = $options['colors'];
|
2022-12-13 09:10:13 +01:00
|
|
|
} else {
|
|
|
|
// Colors.
|
|
|
|
$defaultColor = [];
|
2022-12-16 10:38:37 +01:00
|
|
|
$defaultBorder = [];
|
2022-12-13 09:10:13 +01:00
|
|
|
$defaultColorArray = color_graph_array();
|
|
|
|
foreach ($defaultColorArray as $key => $value) {
|
2022-12-16 10:38:37 +01:00
|
|
|
list($r, $g, $b) = sscanf($value['color'], '#%02x%02x%02x');
|
|
|
|
$defaultColor[$key] = 'rgba('.$r.', '.$g.', '.$b.', 0.6)';
|
|
|
|
$defaultBorder[$key] = $value['color'];
|
2022-12-13 09:10:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$colors = array_values($defaultColor);
|
2022-12-16 10:38:37 +01:00
|
|
|
$borders = array_values($defaultBorder);
|
2022-12-13 09:10:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set labels.
|
2022-12-22 23:03:52 +01:00
|
|
|
if (isset($options['labels']) === true
|
|
|
|
&& empty($options['labels']) === false
|
|
|
|
&& is_array($options['labels']) === true
|
|
|
|
) {
|
|
|
|
$chart->labels()->exchangeArray($options['labels']);
|
|
|
|
}
|
2022-12-13 09:10:13 +01:00
|
|
|
|
|
|
|
// Add Datasets.
|
|
|
|
$setData = $chart->createDataSet();
|
2022-12-16 10:38:37 +01:00
|
|
|
switch ($type) {
|
|
|
|
case 'DOUGHNUT':
|
|
|
|
case 'PIE':
|
|
|
|
$setData->setLabel('data')->setBackgroundColor($borders);
|
|
|
|
$setData->setLabel('data')->data()->exchangeArray(array_values($data));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'BAR':
|
|
|
|
$setData->setLabel('data')->setBackgroundColor($colors);
|
|
|
|
$setData->setLabel('data')->setBorderColor($borders);
|
|
|
|
$setData->setLabel('data')->setBorderWidth(2);
|
|
|
|
|
|
|
|
$setData->setLabel('data')->data()->exchangeArray(array_values($data));
|
|
|
|
|
|
|
|
// Para las horizontales.
|
|
|
|
if (isset($options['axis']) === true
|
|
|
|
&& empty($options['axis']) === false
|
|
|
|
) {
|
|
|
|
$chart->options()->setIndexAxis($options['axis']);
|
|
|
|
$setData->setAxis($options['axis']);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2022-12-20 12:23:18 +01:00
|
|
|
// Not possible.
|
2022-12-16 10:38:37 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2022-12-13 09:10:13 +01:00
|
|
|
$chart->addDataSet($setData);
|
|
|
|
|
|
|
|
return $chart;
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|