function charts_google_charts_info in Charts 7.2
Same name and namespace in other branches
- 8 modules/charts_google/charts_google.module \charts_google_charts_info()
Implements hook_charts_info().
File
- modules/
charts_google/ charts_google.module, line 6
Code
function charts_google_charts_info() {
$info['google'] = array(
'label' => t('Google Charts'),
'render' => '_charts_google_render',
'types' => array(
'area',
'bar',
'column',
'line',
'pie',
'scatter',
),
'file' => 'charts_google.inc',
);
return $info;
}