? .DS_Store
? 635084.pathc
? contrib/.DS_Store
? contrib/chart_views
Index: chart.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/chart/chart.module,v
retrieving revision 1.19
diff -u -p -d -r1.19 chart.module
--- chart.module	28 Oct 2009 04:05:57 -0000	1.19
+++ chart.module	3 Jan 2010 19:25:25 -0000
@@ -1198,3 +1198,23 @@ function chart_unique_color($content_id,
   return '000000';
 }
 
+/*
+ * Returns an array of Google chart types and human-readable names.
+ * The source of this data is http://code.google.com/apis/chart/types.html .
+ */
+function chart_types() {
+  return array(
+    'bhs' => t('Bar - Horizontal'),
+    'bvs' => t('Bar - Vertical'),
+    'bhg' => t('Bar - Grouped Horizontal'),
+    'bvg' => t('Bar - Grouped Vertical'),
+    'p' => t('Pie'),
+    'p3' => t('Pie - 3D'),
+    'pc' => t('Pie - Concentric pie charts'),
+    'v' => t('Venn Diagram'),
+    's' => t('Scatter plot'),
+    'r' => t('Radar'),
+    'rs' => t('Radar with filled areas'),
+    'gom' => t('Goole-o-meter'),
+  );
+}
