chithra_s Report post Posted November 12, 2008 Hi All, I want to create one stacked chart based on 3 values.could anyone suggest me which swf should i use..? Chithra Share this post Link to post Share on other sites
Arindam Report post Posted November 12, 2008 (edited) Hi, Could you please use Stacked Column 2D Chart [ StackedColumn2D.swf ] or Multi-series Stacked Column 2D Chart [ MSStackedColumn2D.swf ]? http://www.fusioncharts.com/docs/Contents/ChartSS/StCol2D.html http://www.fusioncharts.com/docs/Contents/ChartSS/MSStCol.html Edited November 12, 2008 by Guest Share this post Link to post Share on other sites
chithra_s Report post Posted November 12, 2008 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
Arindam Report post Posted November 12, 2008 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
chithra_s Report post Posted November 13, 2008 <dataSet seriesName="Critical" color="A66EDD"> <set value="1" toolText="<2days" /> Hi, i have given toolText look like above, is this correct ? Chithra.S Share this post Link to post Share on other sites
Arindam Report post Posted November 13, 2008 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
chithra_s Report post Posted November 13, 2008 Hi, Thanks Arindam. Ur feedback was valuable to us. Now it was working. Share this post Link to post Share on other sites