Sign in to follow this  
chithra_s

Stacked chart

Recommended Posts

Thanks Arindam,

Actually i was using MSstacked2D.swf only.In tool tip can it be possible to show morethan 3 values?.. Let say my condition is , i want to group the defect counts,severity+customer wise based on aging period.. so i have set aging period is x-axis and counts are my y-axis. my datasets are grouped by based on customers. but i want to show customer name in the tool tip. is it possible.?

Share this post


Link to post
Share on other sites

Hi,

It is possible. By default, FusionCharts shows the series Name, Category Name and value as tool tip text for that data item. But, if you want to display more information for the data item as tool tip, you can use set level toolText attribute to specify the same.

i.e

  <set ...... toolText='your string' .... />

Share this post


Link to post
Share on other sites

Hi,

You are using < special character so you must use encoded character.

if you are using dataURL Method

<   <

>   >

'   '

&   %26

%   %25

if you are using dataXML Method

<   %26lt;

>   %26gt;

'   %26apos;

&   %26

%   %25

 

your example in DataXML:

<dataSet seriesName="Critical" color="A66EDD">

  <set value="1"  toolText="%26lt;2days" />

your example in DataURL:

<dataSet seriesName="Critical" color="A66EDD">

  <set value="1"  toolText="<2days" />

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
Sign in to follow this