function ChartsOpenFlash::get_data_from_cache in Charts and Graphs 7
Same name and namespace in other branches
- 6 apis/charts_openflash/charts_openflash.class.inc \ChartsOpenFlash::get_data_from_cache()
Parameters
$cid: cache_id from which cache to retrieve the data
File
- apis/
charts_openflash/ charts_openflash.class.inc, line 15
Class
Code
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();
/**
* Initializing max_value with some really small value
* and max_value with large value, respectively so that
* they get thrown away at the very first comparision.
*/
$max_value = -100000000000.0;
//some really small value
$min_value = $canvas->y_min;
//some really large value
$i = 0;
// for colours
foreach ($canvas->series as $key => $val) {
$obj = new stdClass();
$val = $this
->_preprocess_values($val);
$obj->values = $val;
// Determine max
$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;
}