diff --git a/google_chart_tools_views/views/google_chart_tools_views_plugin_style.inc b/google_chart_tools_views/views/google_chart_tools_views_plugin_style.inc
index 11529e3..a84b341 100644
--- a/google_chart_tools_views/views/google_chart_tools_views_plugin_style.inc
+++ b/google_chart_tools_views/views/google_chart_tools_views_plugin_style.inc
@@ -36,6 +36,18 @@ class google_chart_tools_views_plugin_style extends views_plugin_style {
       '#description' => t('Chart title.'),
       '#default_value' => $this->options['title'],
     );
+    $form['haxis_title'] = array(
+      '#type' => 'textfield',
+      '#title' => t('hAxis Title'),
+      '#description' => t('Horizontal axis title.'),
+      '#default_value' => $this->options['haxis_title'],
+    );
+    $form['vaxis_title'] = array(
+      '#type' => 'textfield',
+      '#title' => t('vAxis Title'),
+      '#description' => t('Vertical axis title.'),
+      '#default_value' => $this->options['vaxis_title'],
+    );
     $form['type'] = array(
       '#type' => 'textfield',
       '#title' => t('Type'),
@@ -125,6 +137,8 @@ class google_chart_tools_views_plugin_style extends views_plugin_style {
       'columns' => !empty($column) ? $column : '',
       'chartType' => $this->options['type'],
       'options' => array(
+        'vAxis' => array('title' => $this->options['vaxis_title']),
+        'hAxis' => array('title' => $this->options['haxis_title']),
         'forceIFrame' => FALSE,
         'curveType' => $this->options['curve'] ? "function" : "none",
         'is3D' => $this->options['3d'],
