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 05:25:14 -0000 @@ -260,7 +260,16 @@ if (isset($attributes['color'][$c])) { $color = "color='{$attributes['color'][$c]}'"; } - $str_xml .= "\n"; + if (isset($attributes['hoverText'][$c])) { + $hovertext = "hoverText='". htmlentities(trim($attributes['hoverText'][$c]), ENT_QUOTES, 'UTF-8'). "'"; + } + 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 .= "\n"; $c++; } return $str_xml; @@ -688,4 +697,4 @@ $new_form = $form[$name]; return drupal_render($new_form); } -} \ No newline at end of file +}