• Content count

    5
  • Joined

  • Last visited

About [email protected]

  • Rank
    Forum Newbie
  1. Hi Sri, I successfully got the output with u r Javascript code.. i think that is cache problem and that is not in my system which is windows server but in XP.. anyways i got it... Can u give me u r Gmail id... Thanks and regards Kalyan
  2. Hi srividya, What i m trying to do is ... I want to prepare a dashboard. So for every change in the database it should effect the dashboard So i am getting the values from the database and storing into an xml file and using that xml content to display in the chart... So, if i change the date and try to get the values for the changed date.. i m not getting.. instead, i m getting that previous values.. The wonder is that the values in that xml file are changing... what may be the problem!!!!!!!!!!!!! -- Kalyan
  3. Hi srividya We are getting the updated values from the database and put into a xml file.. whenever the data is updated from the database the content is changed completely into the xml file... but it is not reflecting into the charts wheras we can see only the previous values.. If we change the inputs we cant see the changes Help me ---Kalyan
  4. Hi, I m getting values from database into an xml file and displaying in the fusion chart.. If the values in the database are changed they are effecting into the xml file also but the values changed are not populating in the chart... what might be the reason... Thanks
  5. Hi FusionCharts Team, I am creating dashboard using fusion charts.. i m getting values from database into an xml file successfully but, the chart is displaying successfully for the first time and for the second time the chart is displaying with the previous values only even though the xml file content is changed from the database... This is the script used in JSP File <div id="chartdiv" align="center"> </div> <script type="text/javascript"> var chart = new FusionCharts("../Charts/FCF_MSColumn3D.swf", "ChartId", "600", "350","0","1"); chart.setDataURL("../Data/MSColumn3D.xml"); chart.render("chartdiv"); </script> </td>