veerugadde

Members
  • Content count

    12
  • Joined

  • Last visited

About veerugadde

  • Rank
    Junior Member
  1. Hello, We purchased fusion charts v3.1 and it's working great.I have question regarding Multiseries Stacked 3D Chart which we need for one part of project.I think we have only 2D but can not find 3D chart.Could you guys please help us ?
  2. Hello, We have version 3.1 of fusion charts and trying to implement batch export demo illustrated on your website.As implemented in the demo,i am trying to hide the enable buttons and hide the message (loading..).This works fine in firefox but in internet explorer it does not enable the buttons/hide the message which is totally awkward.Could any one please suggest me if i am missing anything ? I am also including the sample code using on charts render function. var totalCharts = 2; var renderStateCounter = 0; function FC_Rendered(domId){ //It is in this method that you can update chart's data using JS methods. //Check if this is the chart that we want to update //Enable the form now, as the chart has loaded this.document.productSelector.disabled = false; //Set chartLoaded flag to true chartLoaded = true; //Get reference to chart object using Dom ID var chartObj = getChartFromId(domId); //Update it's XML - set animate Flag to true switch(domId) { case "chart1Id": renderStateCounter++; chartObj.setDataXML(generateXML(true)); break; case "chart2Id": renderStateCounter++; chartObj.setDataXML(generateXML2(true)); break; case "chart3Id": renderStateCounter++; chartObj.setDataXML(generateXMLFatal(true)); break; case "chart4Id": renderStateCounter++; chartObj.setDataXML(generateXMLFatal1(true)); break; case "chart5Id": renderStateCounter++; chartObj.setDataXML(generateXML3(true)); break; }//switch /* if(renderStateCounter >= totalCharts) { showMessage(); changeBtnDisabledTo(false); } return true; }[
  3. Can anyone please suggest a solution to my question?
  4. Hello, I am trying to add the chart data from mysql database using php class.But for particular case of data query,i was unable to figure out as how to add the data to chart. for example: SELECT value1 as Totalmarks,value2 as English,value3 as Maths,value4 as Science FROM SchooData; from the above sample query,i want to show the totalmarks alongwith marks from english,math and science subjects in a single charts.I tried to use addDataFromDatabase() but it's showing only one value.i also tried with addDatasetsFromDatabase() but was unable to figure out. Can anyone please help me out with above problem? Thanks, veerendra
  5. need help with exporting chart to pdf using php class

    hello, I figured out the solution.When i was trying to access the chart id using the javascript, it's not allowing to do so.This is because the registerwithJS variable in fusioncharts_gen.php is set to false by default,which is not allowing me to access the chartid using the javascript.Please change the default value,if any one has the same problem. Thanks.
  6. Problem with exporting chart using php class

    hello, I figured out the solution.When i was trying to access the chart id using the javascript, it's not allowing to do so.This is because the registerwithJS variable in fusioncharts_gen.php is set to false by default,which is not allowing me to access the chartid using the javascript.Please change the default value,if any one has the same problem. Thanks.
  7. Hello, I got a probelm with exporting charts in to pdf using the php class.The below code explains sample example where i bring the data from the database and access the chart id to export in to pdf doc.When i use chart id from php class to export in to pdf and using that chart id with javascript,shows no result.Can anyone please help me out looking at the sample code provided in the attachment? Please help me out.. Thanks. ExportPDF.txt
  8. Hello, I got a probelm with exporting charts in to pdf using the php class.The below code explains simple example where i bring the data from the database and access the chart id to export in to pdf doc.Can anyone please help me out looking at the sample code provided in the attachment? I am really sorry for my previous post. Thanks. ExportPDF.txt
  9. FusionCharts V3 -Database and Drill-Down Example <?php # Render the chart $FC->renderChart(); ?> Unable to see the chart above? « Back to list of examples
  10. Hello, We recently purchased fusion charts v.3.1 and building our charts applications based on php class. We are trying to extend the functionality of building a query builder for the fusion charts class. I really need some suggestions as how to implement this idea where we can add the query building options to fusion charts object. Thanks.
  11. I looked at the fusion charts online demos page and found an interesting example 3D Demo.I am planning on using that demo for my project but unable to find the download code.Is there any way that i can get the download code for that example? Here is the example link: http://www.fusioncharts.com/Demos/3D/Default.asp Thanks,
  12. Hello, I am using fusion charts php class to generate charts and trying to export as pdf document.While exporting , i am having trouble in accessing the chartID on client side (using javascript) . Can you please help me out as how to resolve this issue? Thanks.