Sumant Sarkar Report post Posted July 10, 2013 we are using this bubble chart (screenshot attached). On hover, the tooltip says "Cost , 1, $1 , 2127654". What's the relevance of 1 and $1 here? The 2127654 figure is ok. That represents the cost. Is there any way we can hide the "1, $1" part? regards,Sumant Share this post Link to post Share on other sites
Sanjukta Report post Posted July 10, 2013 we are using this bubble chart (screenshot attached). On hover, the tooltip says "Cost , 1, $1 , 2127654". What's the relevance of 1 and $1 here? The 2127654 figure is ok. That represents the cost. Is there any way we can hide the "1, $1" part? regards, Sumant Hi Sumant, Please try using the custom value for the tooltip using the "tooText" attribute in the respective <set> element of the XML in order to hide the X and Y values displayed on the tooltip on mouse hover. Hope this helps. Share this post Link to post Share on other sites
anurag.tripathi Report post Posted July 11, 2013 I tried using something like <dataSet showValues= '0'> <set x='30' y='1.3' z='116' name='Traders' tooText= 'myCustomText1'/> <set x='32' y='3.5' z='99' name='Farmers' tooText= 'myCustomText2'/> <set x='8' y='2.1' z='33' name='Individuals' tooText= 'myCustomText3'/> </dataSet> Doesn't work for me can you provide examlpe json/xml for that. Share this post Link to post Share on other sites
Guest Rishab Report post Posted July 11, 2013 (edited) Hi Anurag, Welcome to FusionCharts Forum. Apologies for the typo error . Please try using “toolText” attribute for using your custom value for tooltip in the respective <set> element. <dataset seriesname='Cost' showValues='0'> <set z='2127654' x='1' y='1' name=‘Cost’ toolText= 'myCustomText4'/> </dataset> Please refer the attached file- Data.xml. Data.xml Edited July 11, 2013 by Rishab Share this post Link to post Share on other sites