shreykhandelwal

Members
  • Content count

    5
  • Joined

  • Last visited

About shreykhandelwal

  • Rank
    Forum Newbie
  1. Fusion Charts with dynamic data form portlet class

    here is the code var chart = new FusionCharts("../charts/Pie3D.swf", "ChartId","300", "200", "0", "0"); chart.setDataURL( http://localhost:7001/WebProject/portlet/Ms.portlet?_nfpb=true&_st=&_windowLabel=portlet_MoversAndShakers_portlet&_urlType=resource&_portlet.renderResource=true&_resca=cacheLevelPage&_rrparams=);chart.render("id" + index);
  2. ComboBox Problem

    thanks dear... it's working great could u please help me in other problem aswell http://www.fusioncharts.com/forum/Topic27320-3-1.aspx
  3. Hi i am making a weblogic portlet using fusion charts. Here i want to load my data from the serveResource Method of my portlet class.. but when i set my serveResourceURL in the setDataURL of fusion chart .. the method serveResource is never called and hence my chart shows - Invalid XML Data Please help me out in this. Thanks.
  4. ComboBox Problem

    Hi , I want to dynamically change data on change of combobox. can alyone please help me with an example
  5. Dynamically update fusion charts

    Hi, I am trying to use fusion chart for a case where my XML data changes dynamically.. the dats is calculated on certain parameters within my Portlet class and i need to dynamically refresh my chart. I have been trying this since long but have not been able to get the solution This is how my JSP looks like.. here the exchangeName and AdvDecDataParam are attributes in the request. Please help. < HTML>< HEAD>< SCRIPT LANGUAGE="Javascript" SRC="../js/FusionCharts.js"></SCRIPT></ HEAD>< BODY>< CENTER>< label id="exchangeName">${exchangeName}</label>< jsp:include page="../includes/FusionChartsRenderer.jsp" flush="true"> <jsp:param name="chartSWF" value="../charts/Pie3D.swf" /> <jsp:param name="strURL" value="" /> <jsp:param name="strXML" value="${AdvDecDataParam}" /> <jsp:param name="chartId" value="BSEAdvDec" /> <jsp:param name="chartWidth" value="300" /> <jsp:param name="chartHeight" value="150" /> <jsp:param name="debugMode" value="false" /> <jsp:param name="registerWithJS" value="true" /> </ jsp:include> <BR>< BR></ CENTER></ BODY></ HTML>