ramadevimandala Report post Posted April 15, 2009 Hi, Can you please tell me how I can do the drill for multi series column3D graph. here is my XML: <chart palette="2" caption="Turnover Comparison" shownames="1" showvalues="0" decimals="0" useRoundEdges="1" legendBorderAlpha="0" bgColor="99CCFF,FFFFFF" bgAlpha="40,100" bgRatio="0,100" bgAngle="360" showBorder="1" xaxisname="Leaving Reson" yaxisname="Number of employees"> <categories> <category label="Other"/> <category label="Benefits"/> <category label="Deceased"/> <category label="Resigned"/> <category label="Dismissed"/> <category label="Education"/> <category label="Retirement"/> <category label="Compensation"/> <category label="Gross Misconduct"/> <category label="Poor Performance"/> <category label="Better Opportunity"/> <category label="Voluntary Redundancy"/> <category label="Compulsory Redundancy"/> <category label="Lacks Growth Potential"/> <category label="Voluntary Early Retirement"/> <category label="Capability Dismissal on Ill Health Grounds"/> </categories> <dataset seriesName="2003" color="AFD8F8" showValues="0"> <set value="15"/> <set value="14"/> <set value="2"/> <set value="28"/> <set value="6"/> <set value="2"/> <set value="5"/> <set value="82"/> <set value="21"/> <set value="50"/> <set value="44"/> <set value="1"/> <set value="7"/> <set value="5"/> <set value="4"/> <set value="5"/> </dataset> <dataset seriesName="2004" color="F6BD0F" showValues="0"> <set value="8"/> <set value="17"/> <set value="1"/> <set value="34"/> <set value="5"/> <set value="2"/> <set value="55"/> <set value="15"/> <set value="29"/> <set value="49"/> <set value="3"/> <set value="1"/> <set value="11"/> </dataset> <dataset seriesName="2005" color="8BBA00" showValues="0"> <set value="11"/> <set value="13"/> <set value="2"/> <set value="33"/> <set value="7"/> <set value="3"/> <set value="76"/> <set value="4"/> <set value="11"/> <set value="24"/> <set value="67"/> <set value="2"/> <set value="5"/> <set value="4"/> </dataset> </chart> Thanks, Rama Share this post Link to post Share on other sites
Dhruva Report post Posted April 15, 2009 Hello Rama, Welcome to the forum. You can simply use the link attribute in any dataplot element you want to drilldown. For example: <set value="28" link=""/> Within the quotes after the link attribute, you can use regular links, or javascript. Please check http://www.fusioncharts.com/docs/ -> Drill Down Charts for more information. I hope this helps. Share this post Link to post Share on other sites
ramadevimandala Report post Posted April 15, 2009 Hi, Thank you for your reply, I found the solution in docs, <set value="28" link="JavaScript:drillDownJS2('2003','Resigned');"/> Thanks, Rama Share this post Link to post Share on other sites
Dhruva Report post Posted April 15, 2009 You are most welcome! Share this post Link to post Share on other sites
anila Report post Posted October 9, 2009 (edited) Hi, Can we call js function on entire chart? Means i want to call js function,by clicking on any where in the chart. Is it possible? Edited October 9, 2009 by Guest Share this post Link to post Share on other sites
Guest Rajroop Report post Posted October 9, 2009 Hey Anila, Could you please refer to the following links for this? Ref.- http://www.fusioncharts.com/docs/Contents/DrillDown/ClickURL.html http://www.fusioncharts.com/docs/Contents/DrillDown/JavaScript.html I hope this helps. Share this post Link to post Share on other sites