You are here

function google_charts_chart_types in Charts 7

Same name and namespace in other branches
  1. 6 google_charts/google_charts.module \google_charts_chart_types()

Implementation of hook_chart_types().

File

google_charts/google_charts.hooks.inc, line 31
@author Bruno Massa http://drupal.org/user/67164

Code

function google_charts_chart_types() {
  return array(
    'venn' => t('Venn'),
    'scatter' => t('Scatter Plot'),
  );
}