Sumant Sarkar

Question on Bubble charts

Recommended Posts

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

post-28614-0-71836600-1373450830_thumb.png

Share this post


Link to post
Share on other sites

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

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

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 by Rishab

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now