anila
Members-
Content count
68 -
Joined
-
Last visited
-
Days Won
1
Everything posted by anila
-
Hi srividya_sharma, By doing like that also,I am getting the same problem. Let me know whats the issue exactly? Can you share the code,whch is working for you.
-
Hi, Thanks for your reply. After replacing with your statement also,it did n't worked. I am wondering wat is the difference between yours statement and mine. Same error i am getting in IE.
-
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?
-
Hi, Thanks for your reply. Here is the code String chartXML1 = "<chart connectNullData='1' labelDisplay='Rotate' slantLabels='1' baseFont='Ge Inspira' useRoundEdges='1' legendPosition='RIGHT' yAxisName='NPS' legendBorderAlpha='0' shownames='1' showvalues='0' clickURL='download(%26apos;DwnNPS%26apos;,4);'>";
-
Hi, by using like this clickURL='download(%26apos;DwnNPS%26apos;,2);' ,it will work similar like js function onclick? I tried this one also it is redirecting http://localhost:8084/project_Testing_FS/download('DwnNPS',4); like this. type Status report message /project_Testing_FS/download('DwnNPS',4); description The requested resource (/project_Testing_FS/download('DwnNPS',4) is not available. wat else i have to do here? Any thing wrong i did???
-
Hi Sudipto Choudhury, Thanks for your reply. <chart labelDisplay='Rotate' slantLabels='1' clickURL=JavaScript:download('DwnNPS',2) baseFont='Ge Inspira' useRoundEdges='1' legendPosition='RIGHT' yAxisName='NPS' legendBorderAlpha='0' shownames='1' showvalues='0' > I was calling js function as part chart tag as shown above. It is throwing javascript error like:Expected ')' May i know wats wrong about this. Thanks in advance. Smiles, Anitha G
-
Hi, can anybody help me on this issue plz....
-
Hi, DwnNPS is not a function. It is just string whch is passed to download(feed,ctl) js function.
-
Hi, It is showing Http status-404 error.
-
Hi, Please Any body help on this to me. this is very urgent.
-
Hi, here is my xml file. <chart caption='Trend By Region-USA' baseFont='Ge Inspira' legendPosition='RIGHT' clickURL='j-download('DwnNPS',2)' yAxisName='NPS' legendBorderAlpha='0' shownames='1' showvalues='0' ><categories><category label='Jul-2008'/><category label='Aug-2008'/><category label='Sep-2008'/><category label='Oct-2008'/><category label='Nov-2008'/><category label='Dec-2008'/><category label='Mar-2009'/><category label='Jun-2009'/></categories><dataset seriesName='Central Corridor'><set value='67.0'/><set value='80.0'/><set value='45.0'/><set value='75.0'/><set value='64.0'/><set value='65.0'/><set value='80.0'/><set value='73.0'/></dataset><dataset seriesName='West'><set value='65.0'/><set value='61.0'/><set value='45.0'/><set value='62.0'/><set value='77.0'/><set value='77.0'/><set value='79.0'/><set value='52.0'/></dataset><dataset seriesName='Ultrasound HQ'><set value='100.0'/></dataset><dataset seriesName='North East'><set value='77.0'/><set value='77.0'/><set value='55.0'/><set value='62.0'/><set value='76.0'/><set value='73.0'/><set value='78.0'/><set value='77.0'/></dataset><dataset seriesName='Central Atlantic'><set value='86.0'/><set value='76.0'/><set value='54.0'/><set value='74.0'/><set value='88.0'/><set value='78.0'/><set value='80.0'/><set value='69.0'/></dataset><dataset seriesName='South East'><set value='65.0'/><set value='75.0'/><set value='72.0'/><set value='87.0'/><set value='85.0'/><set value='84.0'/><set value='76.0'/><set value='81.0'/></dataset></chart> Script function is <script language="javascript"> function download(feed,ctl){ var form = document.forms[0]; form.method="POST"; form.action="ExtDXAction.do?type="+feed+"&cn="+ctl; form.submit(); } Shall i place ths script as part of external script file? Let me know what is going wrong. Waiting for ur reply..........
-
Hi, still it is showing invalid xml data. Wat I have to do?????
-
Hi, I need to represent yAxisName='Trained %' while creating chart object. How can i do tat. for numbers we can add numberSuffix='%' while creating chart object. For text lable,how to do that?
-
How to plot msline chart for uncontinuous data.urgent please help me.
anila posted a topic in FusionCharts and JSP
Hi All, <chart connectNullData='1' labelDisplay='Rotate' slantLabels='1' baseFont='Ge Inspira' useRoundEdges='1' legendPosition='RIGHT' imageSave='1' link='javaScript:onClick()' yAxisName='Values' legendBorderAlpha='0' shownames='1' showvalues='0' > <categories> <category label='Jul-2008'/> <category label='Aug-2008'/> <category label='Sep-2008'/> <category label='Oct-2008'/> <category label='Nov-2008'/> <category label='Dec-2008'/> <category label='Mar-2009'/> <category label='Jun-2009'/> </categories> <dataset seriesName='P-TECH'> <set value='0.0'/> <set value='100.0'/> <set value='100.0'/> </dataset> <dataset seriesName='CARDIAC'> <set value='100.0'/> <set value='0.0'/> <set value='75.0'/> <set value='0.0'/> <set value='100.0'/> <set value='100.0'/> <set value='33.0'/> </dataset> <dataset seriesName='MULTIVENDOR'> <set value='0.0'/> <set value='0.0'/> <set value='100.0'/> <set value='75.0'/> <set value='100.0'/> <set value='50.0'/> </dataset> <dataset seriesName='NETWORKING'> <set value='0.0'/> <set value='100.0'/> <set value='100.0'/> </dataset> <dataset seriesName='DU- IT'> <set value='100.0'/> <set value='100.0'/> <set value='100.0'/> <set value='75.0'/> <set value='100.0'/> <set value='100.0'/> <set value='50.0'/> <set value='100.0'/> </dataset> </chart> I have xml file like this. I am trying to plot msline chart using msline.swf file in jsp. but my problem is i have several months as categorie labels. in database for dataset p-tech,i have values according to month dec-2008,mar-2009,apr-2009. but it is ploating on jul-2008,aug-2008,sep-2008 respectivley. how to plot the values with database corresponding values. Let me know any suggestions. -
How to plot msline chart for uncontinuous data.urgent please help me.
anila replied to anila's topic in FusionCharts and JSP
Hello, wat will happen,if i fill like <set value=" "/> insted of <set/>. is there any difference for<set /> and <set value=" "/>. Let me know????? waiting for ur reply.......... -
Hi, Thanks it worked.
-
Hi, I used like this in my jsp. <chart labelDisplay='Rotate' slantLabels='1' connectNullData='1' baseFont='Ge Inspira' useRoundEdges='1' legendPosition='RIGHT' yAxisName='NPS' legendBorderAlpha='0' shownames='1' showvalues='0' clickURL='download('DwnNPS',2)'> by puting javascript function in head tag in same page. <script language="javascript"> function download(feed,ctl){ var form = document.forms[0]; form.method="POST"; form.action="ExtDXAction.do?type="+feed+"&cn="+ctl; form.submit(); } </script> it is showing invalid xml data. may i know where i did the mistake. Thanks, Anila
-
Hi, Thank u very much for ur response Asap. which page you reffered to me,i read already. here they r calling particular html page as url. insted of that shal i call javascript function like javascript:download('DwnNPS',4). if i have the js file as external file. Thanks Alot.....