Index: fusioncharts.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/fusioncharts/fusioncharts.module,v
retrieving revision 1.14.2.10
diff -u -r1.14.2.10 fusioncharts.module
--- fusioncharts.module	15 Mar 2009 03:17:39 -0000	1.14.2.10
+++ fusioncharts.module	23 Mar 2009 02:07:19 -0000
@@ -260,7 +260,16 @@
     if (isset($attributes['color'][$c])) {
       $color = "color='{$attributes['color'][$c]}'";
     }
-    $str_xml .= "<set name='". htmlentities(trim($column[0]), ENT_QUOTES, 'UTF-8') ."' value='{$column[1]}' $color $link />\n";
+    if (isset($attributes['hoverText'][$c])) {
+      $hovertext = "hoverText='{$attributes['hoverText'][$c]}'";
+    }
+    if (isset($attributes['alpha'][$column[0]])) {
+      $alpha = "alpha='{$attributes['alpha'][$column[0]]}'";
+    }
+    if (isset($attributes['showName'][$column[0]])) {
+      $showname = "showName='{$attributes['showName'][$column[0]]}'";
+    }
+    $str_xml .= "<set name='". htmlentities(trim($column[0]), ENT_QUOTES, 'UTF-8') ."' value='{$column[1]}' $color $link $hovertext $alpha $showname />\n";
     $c++;
   }
   return $str_xml;
@@ -688,4 +697,4 @@
     $new_form = $form[$name];
     return drupal_render($new_form); 
   }
-}
\ No newline at end of file
+}

