hunghq
Members-
Content count
5 -
Joined
-
Last visited
Everything posted by hunghq
-
Thank you, bindhu. I have downloaded SR4. There's definitely some changes to the tooltip of Stacked Chart; however, in some cases, the tooltip still shows up. Please try this sample data with the Stacked Chart example, and take a look at my screenshot: <dataset seriesName="2005" color="F6BD0F" showValues="0">\n\ <set value="0" tooltext="" alpha="0.1" />\n\ <set value="0" alpha="0.1" />\n\ <set value="0" alpha="0.1" />\n\ <set value="0" alpha="0.1" />\n\ <set value="0" alpha="0.1" />\n\ </dataset>\n\ Again, let me rephrase the root cause, for a <set value="0" />, there should be no line to represent it (no tooltip, but the series still should be in the legend box). The reason why I set the alpha="0.1" instead of "0" is that if all 5 sets in the series has alpha="0", the series name disappears from the legend box automatically. It'd better to have keep the series in the legend box intact no matter what.
-
My version is FusionCharts XT (v3.2.2) Service Release 3 (Released on 12th March, 2012). Where can I see the release notes of these Service Releases? Can you double check the sample? Of course, the tooltip only shows up when you hover the mouse on it. Regards, Hung <dataset seriesName="2005" color="F6BD0F" showValues="0">\n\ <set value="200" showValues="0"/>\n\ <set value="0" toolText="" alpha="0.1"/>\n\ <set value="0"/>\n\ <set value="0" alpha="0.1"/>\n\ <set value="0" alpha="0.1"/>\n\ </dataset>\n\
-
I only modified the data source of the Stacked Column chart sample bundled with FusionCharts 3.2.2. The file is StCol2D1.js var dataString ='<chart caption="Product Comparison" showLabels="1" showvalues="0" numberPrefix="$" showSum="1" decimals="0" useRoundEdges="1" legendBorderAlpha="0">\n\ <categories>\n\ <category label="Product A" />\n\ <category label="Product B" />\n\ <category label="Product C" />\n\ <category label="Product D" />\n\ <category label="Product E" />\n\ </categories>\n\ <dataset seriesName="2004" color="AFD8F8" showValues="0">\n\ <set value="256.34" />\n\ <set value="201.82" />\n\ <set value="173.76" />\n\ <set value="354.15" />\n\ <set value="381.68" />\n\ </dataset>\n\ <dataset seriesName="2005" color="F6BD0F" showValues="0">\n\ <set value="200" showValues="0"/>\n\ <set value="0" toolText="" alpha="0.1"/>\n\ <set value="0"/>\n\ <set value="0" alpha="0.1"/>\n\ <set value="0" alpha="0.1"/>\n\ </dataset>\n\ <dataset seriesName="2006" color="8BBA00" showValues="0">\n\ <set value="450.65" />\n\ <set value="448.76" />\n\ <set value="187.18" />\n\ <set value="775.31" />\n\ <set value="926.68" />\n\ </dataset>\n\ </chart>'; So, if <set value="0" toolText="" alpha="0.1"/>, the empty bar won't be displayed, but the tooltip is still there.
-
I got the same problem with the Stacked Chart. Any solution to hide the tooltip yet?
-
Hi, If we put showValue='0' in all <set> containing zero values, the value won't show up. However, when hovering it, the default tooltip shows up, which says "SeriesName, CategoryName, 0", even though I tried to set the toolText="". <set value="0" toolText="" showValues="0" alpha="0.1"/> If the set value is zero, hide it by setting it to almost transparent, because if all sets in the same series has alpha='0', the set won't be displayed in legend box. I think this is a very common and important issue, pls have a look at my screenshot. Is there any workaround to disable the toolText in this case?