shilpashivapuram

Members
  • Content count

    4
  • Joined

  • Last visited

Everything posted by shilpashivapuram

  1. Dragnode chart link attribute

    I was trying the link attribute of the dataset in the dragnode chart... but it doesnt seem to be working. I was trying the same examples given as part of the evaluation.
  2. Drag Node chart - Connector properties

    I tried with even 1 option but it isnt working. I even put on the debug mode, where i can view the XML data and have even the set the settings as mentioned in the earlier link, but still says that the object doesnt support this method. var chart = new FusionCharts("../Charts/DragNode.swf", "ChartId", "600", "550", "1", "1");
  3. Drag Nod getXMLData() error

    The same still doesn seem to function...still getting the same error
  4. Drag Node chart - Connector properties

    Hello, I was trying to access the same method chart.getXMLData(), but was getting the error stating that the object doesnt support this method. Following is the code <?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>FusionCharts v3 Documentation</title> <link rel="stylesheet" href="../Contents/Style.css" type="text/css" /> <script language="JavaScript" src="../JSClass/FusionCharts.js"></script> </head> <body> <table width="98%" border="0" cellspacing="0" cellpadding="3" align="center"> <tr> <td valign="top" class="text" align="center"> <div id="chartdiv" align="center"> FusionCharts. </div> <script type="text/javascript"> var chart = new FusionCharts("../Charts/DragNode.swf", "ChartId", "600", "550", "0", "0"); chart.setDataURL("Data/DragNode3.xml"); chart.render("chartdiv"); </script> </td> </tr> <tr> <td valign="top" class="text" align="center"> </td> </tr> <tr> <td valign="top" class="text" align="center"><a href="Data/DragNode3.xml" target="_blank"><img src="../Contents/Images/BtnViewXML.gif" alt="View XML for the above chart" width="75" height="25" border="0" /></a></td> <td valign="top" class="text" align="center"><input type="button" value="click here" onclick="getXML()"/></td> </tr> </table> </body> <script type="text/javascript"> function getXML(){ //Get a reference to our chart var ourChart = getChartFromId("ChartId"); //Get the data from chart var xmlRtn = ourChart.getSWFHTML(); //Show it to user in alert box. alert(xmlRtn); } </script> </html> Please let me know incase I am missing out on something