charts_openflash.class.inc in Charts and Graphs 7
File
apis/charts_openflash/charts_openflash.class.inc
View source
<?php
class ChartsOpenFlash extends ChartCanvas {
function set_data($rows, $x_labels) {
$this->series = $rows;
$this->x_labels = $x_labels;
}
function get_data_from_cache($cid = null) {
$cache = cache_get($cid);
if (!$cache) {
drupal_not_found();
exit;
}
$canvas = $cache->data;
if (empty($canvas) || !is_object($canvas) || !is_array($canvas->series) || empty($canvas->type)) {
drupal_not_found();
exit;
}
$this->title = new stdClass();
$this->title->text = $canvas->title;
$this->title->style = "font-size: 20px; color:#0000ff; font-family: Verdana; text-align: center;";
$this->type = $canvas->type;
$this->y_legend = new stdClass();
$this->y_legend->text = $canvas->y_legend;
$this->y_legend->style = "{color: #736AFF; font-size: 12px;}";
$y = new stdClass();
$y->grid_colour = "#00ff00";
$y->offset = 50;
$this->y_axis = $y;
$x = new stdClass();
$x->colour = "#909090";
$x->grid_colour = "#00ff00";
$x->labels->labels = $canvas->x_labels;
$this->x_axis = $x;
$series_colors = ChartsOpenFlash::series_colors();
$max_value = -100000000000.0;
$min_value = $canvas->y_min;
$i = 0;
foreach ($canvas->series as $key => $val) {
$obj = new stdClass();
$val = $this
->_preprocess_values($val);
$obj->values = $val;
$arr_tmp_max = array_merge($val, array(
$max_value,
));
$arr_tmp_min = array_merge($val, array(
$min_value,
));
$max_value = max($arr_tmp_max);
$min_value = min($arr_tmp_min);
if ($this->type == 'pie') {
$obj->tip = '#label# #val# (#percent#)';
$obj->{label - colour} = '#432BAF';
}
$obj->text = $key;
$obj->alpha = 0.5;
$obj->type = $canvas->type;
$obj->colour = $series_colors[$i];
$this->elements[] = $obj;
$i++;
}
$y_step = abs(($max_value - $min_value) / 10);
$this->x_axis->{'3d'} = 5;
$this->y_axis->max = $max_value + $max_value / 10;
if ($this->y_axis->max > 10) {
$this->y_axis->max = (int) $this->y_axis->max;
}
$this->y_axis->min = $min_value;
if ($y_step > 5) {
$y_step = (int) $y_step;
}
$this->y_axis->steps = $y_step;
}
function _preprocess_values($values) {
$labels = $this->x_axis->labels->labels;
$i = 0;
switch ($this->type) {
case 'pie':
$new_vals = array();
foreach ($values as $val) {
if (!empty($labels[$i]) && $labels[$i] != 'null') {
$obj = new stdClass();
$obj->value = $val;
$obj->label = $labels[$i];
$arr = array(
'value' => $val,
'label' => $labels[$i],
);
$new_vals[] = $obj;
}
$i++;
}
return $new_vals;
default:
$new_vals = array();
$new_labels = array();
foreach ($values as $val) {
if (!empty($labels[$i]) && $labels[$i] != 'null') {
$new_vals[] = $val;
$new_labels[] = $labels[$i];
}
$i++;
}
$this->x_axis->labels->labels = $new_labels;
return $new_vals;
}
}
function get_chart() {
$unique = chart_graphs_random_hash();
$arr = (array) $this;
$generic = (object) $arr;
cache_set($unique, $generic, 'cache', time() + 30);
$mod_path = drupal_get_path('module', $this
->getModuleName());
$openflash_swf_uri = base_path() . $mod_path . '/open-flash-chart.swf';
$data_URI = base_path() . 'charts_openflash/data/' . $unique;
$data_URL = url($data_URI, array(
'absolute' => TRUE,
));
$swfobj_mod_path = drupal_get_path('module', 'swfobject_api');
$swfobj_js = $swfobj_mod_path . '/swfobject.js';
$expressInst = base_path() . $swfobj_mod_path . '/expressInstall.swf';
$chart_div_id = "drp_charts_graphs_" . $this
->getUnique_ID();
drupal_add_js($swfobj_js, 1);
return <<<HTML
<script type="text/javascript">
swfobject.embedSWF(
"{<span class="php-variable">$openflash_swf_uri</span>}", "{<span class="php-variable">$chart_div_id</span>}", "{<span class="php-variable">$this</span>-><span class="php-function-or-constant property member-of-self">width</span>}", "{<span class="php-variable">$this</span>-><span class="php-function-or-constant property member-of-self">height</span>}",
"9.0.0", "{<span class="php-variable">$expressInst</span>}",
{"data-file":"{<span class="php-variable">$data_URI</span>}"}
);
</script>
<div id="{<span class="php-variable">$chart_div_id</span>}"></div>
HTML;
}
}