LeonWood Report post Posted March 7, 2011 Hi I get a problem... <dataset seriesName=' S1'> <set id='S1_1' value='50.00' toolText=' AAAAAAAAAAAAAAAAAAAAAAAAAAAAA' /> <set id='S1_2' value='50.00' toolText=' BBBBBBBBBBBBBBBBBBBBBBBBBBBBB' /> </dataset> <dataset seriesName=' S2' > <set id='S2_1' value='50.00' toolText='XXXXXXXXXXXXXXXXXXXXXX' /> <set id='S2_2' value='40.00' toolText='CCCCCCCCCCCCCCCCCCC' /> </dataset> when set "S1_1" 's value equal "S2_2" 's value "S2_2" 's tooltip will cover "S1_1' 's then users can't see S1_1 's tip is there an attribute can show them all? or i need concat s1_1 and s2_2's tip so sorry for my poor english....... Share this post Link to post Share on other sites
Guest Angie Report post Posted March 7, 2011 Hi, I am afraid, there is no such attribute in FusionCharts to show all tooltips for same value. You would need to use different values in order to show tooltip for individual <set> element. Hope this helps. Share this post Link to post Share on other sites
LeonWood Report post Posted June 27, 2011 if i have source code ,could i modify it and realize same value add on one tooltip? Hi, I am afraid, there is no such attribute in FusionCharts to show all tooltips for same value. You would need to use different values in order to show tooltip for individual <set> element. Hope this helps. Share this post Link to post Share on other sites
Guest Angshu Report post Posted June 27, 2011 Hi, Thanks for your response. Since you are using the same value inside the <set> element, this is not possible even modifying the source code. Please try the same by reducing the radius of the data point using <anchorRadius> attribute. More details at: http://www.fusioncha...e.html#Anchor20 Please find the xml code below for your reference: <chart caption='Business Results 2005 v 2006' xAxisName='Month' yAxisName='Revenue' showValues='0' numberPrefix='> <categories> <category label='Jan' /> <category label='Feb' /> <category label='Mar' /> <category label='Apr' /> <category label='May' /> <category label='Jun' /> <category label='Jul' /> <category label='Aug' /> <category label='Sep' /> <category label='Oct' /> <category label='Nov' /> <category label='Dec' /> </categories> <dataset seriesName='2006'> <set value='27400' toolText='AAAAAAAAAAAAAAAAAAAAAAAAAAAAA' anchorRadius='20'/> <set value='27400' toolText='BBBBBBBBBBBBBBBBBBBBBBBBBBBBB' anchorRadius='20' /> <set value='25800' /> <set value='26800' /> <set value='29600' /> <set value='32600' /> <set value='31800' /> <set value='36700' /> <set value='29700' /> <set value='31900' /> <set value='34800' /> <set value='24800' /> </dataset> <dataset seriesName='2005'> <set value='27400' toolText='AAAAAAAAAAAAAAAAAAAAAAAAAAAAA' /> <set value='27400' toolText='BBBBBBBBBBBBBBBBBBBBBBBBBBBBB'/> <set value='12500'/> <set value='15000'/> <set value='11000' /> <set value='9800' /> <set value='11800' /> <set value='19700' /> <set value='21700' /> <set value='21900' /> <set value='22900' /> <set value='20800' /> </dataset> </chart> Hope this helps. Share this post Link to post Share on other sites