You are here

function charts_google_charts_info in Charts 8

Same name and namespace in other branches
  1. 7.2 modules/charts_google/charts_google.module \charts_google_charts_info()

Implements hook_charts_info().

File

modules/charts_google/charts_google.module, line 15
Charts module integration with Google Charts library.

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;
}