rluengo

Members
  • Content count

    11
  • Joined

  • Last visited

Everything posted by rluengo

  1. Hello, I have a funny issue right now. Whenever I click on the chart the page title is changed to #, how can I stop this from happening? This same thing was happening when I made the chart.render but I was able to fix it with Javascript. Any help you can provide is welcome. Thank you, Roberto Luengo
  2. When dragging a node the title changes to #

    Attached is the code as saved by the application. The XML is taken from the flash using "getXMLData" and then it is fixed by adding the alpha, arrowAtStart and arrowAtEnd attributes. Thank you for your help! powercharts.txt
  3. Is there a way to control the z-index of the nodes? I would like to set the z-index to control which node appear on top in case they overlap. Thank you for your help, Roberto Luengo
  4. Hello, We have just bought dragnode.swf and it is still saying that the object does not support the getXMLData method. Please help, we really do need to use the method as soon as possible. Kind regards, Roberto Luengo
  5. Any ideas? I have tried restoring the evaluation .js without success as advised by Rajroop
  6. Another comment, I am using fusioncharts.js and dragnode.swf. We bought only the dragnode.swf chart which is the only one we need, but the .zip file received had the following : Empty Contents folder Empty code folder Empty gallery ONLY fusioncharts.js, in the evaluation package there was another file of name "FusionChartsExportComponent.js" which I do not believe we need. And of course the source code (which I expect not to use) and the swf. All this empty folders plus the version numbers is making me think that maybe the package is not complete. What do you think? Is this the problem?
  7. By the way. The editor I use to debug javascript is showing me that the chart object do not have that method in the list (getXML, getXMLData, etc). Could it be that my version is not the one it is supposed? I was checking the files received when buying the oem license and found that the fusioncharts.js file is smaller and older (v1.2
  8. Hi Basundhara Ghosal, I tried this code without success Here is the code: function showChart() { var obj = $("content_scroll_content"); var chartwidth = obj.style.pixelWidth; var chart = new FusionCharts("includes/fusioncharts/DragNode.swf", "chart1Id", (chartwidth-16), screen.height, "0", "1"); chart.setTransparent(true); chart.setDataURL("includes/fusioncharts/DragNode1.xml"); chart.render("chart1div"); } function getChartXML() { var ourChart = getChartFromId("chart1Id"); var xmlRtn = ourChart.getXML(); } The chart shows but I am unable to get the XML from it. Any other ideas? I am testing in a apache/php server in localhost and in a remote server as well. Kind regards, Roberto Luengo
  9. Hi, I just tried the method you proposed (setDataXML) with the same result. Just to be clear I need to extract the xml, not set it... but tried anyway just to see if I receive the same error. Thank you for the try
  10. Here is the code... Just in case someone need it: To render the chart: var obj = $("content_scroll_content"); var chartwidth = obj.style.pixelWidth; var chart = new FusionCharts("includes/fusioncharts/DragNode.swf", "fusiondemo", (chartwidth-16), screen.height, "0", "1"); chart.setTransparent(true); chart.setDataURL("includes/fusioncharts/DragNode1.xml"); chart.render("chartdiv"); And to get the xml: var ourChart = getChartFromId("chartdiv"); var xmlRtn = ourChart.getXMLData(); I have already test it in a remote server too with the same result
  11. By the way... I have been reading the forum and already did what they advice in the topics. It is running in a localhost server. The New FusionCharts last parameter is set to 1.