schulle877 Report post Posted March 21, 2011 Hi! I'm using the most current version of FC, 3.2 in combination with the php classes. There is a strange behaviour of "StackedColumn3D" vs. "StackedBar3D". There is a bool called $bLinks which switches if category labels should be linked. This only works with the combination of defining a style and encoding a url. (Previous post: See this) Following code WORKS for StackedBar3D: $FC_wst_verlauf = new FusionCharts("StackedBar3D",$iWidth,$iHeight); // stacked chart if ($bLinks){ $FC_wst_verlauf->defineStyle("CategoryLabelStyle","font","isHTML=1;Underline=0;color=0434B1;"); $FC_wst_verlauf->applyStyle("DataLabels","CategoryLabelStyle"); } ... if ($bLinks) { $link = urlencode("example.php?reporttype=list&filter_month=".$month["month"]); $link = "<a href="".$link."">".$month["month"]."</a>"; } else $link = $month["month"]; ... looking like the first attachment I want this to work for StackedColumn3D, so same code, different swf file DOESN'T WORK, looking like the second attachment. May there be an error in the swf-file? Thanks. Sven Schulze Share this post Link to post Share on other sites
Guest Angie Report post Posted March 22, 2011 Hi, Could you please send us the Generated XML code to look into the issue? Awaiting for your reply. Share this post Link to post Share on other sites
FusionCharts Support Report post Posted April 12, 2011 Hi, You would need use labelDisplay='none' to enable the links in categories. Share this post Link to post Share on other sites