You are here

function google_charts_chart_types in Charts 6

Same name and namespace in other branches
  1. 7 google_charts/google_charts.hooks.inc \google_charts_chart_types()

Implementation of hook_chart_types().

File

google_charts/google_charts.module, 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'),
    'hbar2Ds' => t('Horizontal Bar Stacked 2D'),
    'vbar2Ds' => t('Vertical Bar Stacked 2D'),
  );
}