function _____charts_openflash_data in Charts and Graphs 6
File
- apis/
amcharts/ amcharts.module, line 71 - drupal module file implementing amcharts.
Code
function _____charts_openflash_data($cid = NULL) {
$cache = cache_get($cid);
if (!$cache) {
drupal_not_found();
exit;
}
$canvas = $cache->data;
$chart = chart_graphs_get_graph('open-flash');
$chart
->get_data_from_cache($cid);
}