Rahul Kumar

L1 Moderators
  • Content count

    1,253
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Rahul Kumar

  1. HoverText and Newline???

    Hi, Could you please try using between two line and try again. Example: $FC->addChartData($bs_array[$i] - $af_array[$i],"hoverText=Line1 Line2");
  2. Change Gantt Chart Properties Dynamically

    Hi, I'm afraid, it is not possible as of now.
  3. feature not working

    Hi, You are most welcome, and thank you for purchasing the licence.
  4. feature not working

    Hi, I am afraid, you must be looking at the wrong documentation, FusionCharts FREE documentation URL is http://www.fusioncharts.com/free/docs, and only features listed in this documents are supported by FusionCharts FREE. Also, could you please confirm once that you are using FusionCharts FREE version or you are using FusionCharts Evaluation Version of charts? These are two separate packages. In FusionCharts Evaluation you will get all those features which you'll get in a licenced version. And you can get the FusionCharts_Gen.php class under Package's ROOT->Code->PHPClass->Includes folder (in both versions).
  5. save image

    Hi, I am afraid, only shadows are not being captured as of now. But you can have the round edges in the chart image.
  6. Hi, Could you please enable registerWithJS parameter and try again? To enable parameter please see the code below: return FusionCharts.RenderChart("../FusionCharts/Column2D.swf", "", strXML, "myChartId1", "590", "320", false, true); }
  7. Visible in Firefox, but not in IE

    Hi Jerry, Its weird why still you are not able to see the chart in IE. However, could you please try running the attached sample file and let us know the results? You would need to run test.php file (http://localhost/php/test.php) Sample_php.zip
  8. i want to change dails values dynamically

    Hi, Could you please make sure that you are using registerWithJS=1 in your application?
  9. Visible in Firefox, but not in IE

    Hi Jerry, You are most welcome . You can execute UninstlFl.exe file OR you can also use Add/Remove Program. Also, could you please let me know, what you get if you right click on that blank space (in IE)?
  10. Visible in Firefox, but not in IE

    Hi Jerry, It seems that there is some problem with your Flash Player (ActiveX control). What you could do is: 1. Check for the Flash Player version >= 8.0. If it is already >= 8 then please follow 2nd method. 2. Uninstall Flash Player and then Re-install To uninstall, Please Run: C:WindowsSystem32MacromedFlashuninstall_activeX.exe -OR- 3. Try to see the chart to a different/other computer.
  11. Hi, I am afraid, FusionCharts do not supports nested charts. However, you can use the source class file of each chart to integrate them into a single flash movie. This is possible from the developer version onwards.
  12. power point 2003

    Hi, To get the chart again at your slide in design time, it is required to run slide show everytime when you re-open PPT. When you run a slide show and view the chart, this captures the last state of flash movie(chart), and sets this state in Shockwave ActiveX control. And when you end the slide show and come back to design view you see the chart. And there is no any other method by which you can see the chart when you re-open the PPT file.
  13. power point 2003

    Hi, I am afriad, it is not possible. You would need to run the slide show once, if you re-open your PPT.
  14. some FusionCharts methods not suported!!!!

    Hi, Could you please refer to: http://www.fusioncharts.com/forum/Topic5009-47-1.aspx http://www.fusioncharts.com/forum/FindPost8077.aspx
  15. Prints dark background in FF if translucent

    Hi, I'm afraid, it is a known issue with FireFox. And there is no cure for this as of now.
  16. Printing dark background in Firefox

    Hi, I'm afraid, it is a known issue with FireFox. And there is no cure for this as of now.
  17. giving me fits

    Hi, You are welcome and we're glad that everything is now working.
  18. giving me fits

    Hi Jerry, The $strXML variable returns XML string not just the simple string, echo must be echoing the XML but since it is using tag <chart> so it hides from browser if you view the source code of the page (right click->View Source) then you can see XML string. Also could you please let us know what exactly you are getting? * Is is just a white area instead of chart? ---> If it is just a white area then you would need to check your chart SWF path. OR * You are getting message like "No data to display" OR "Error in loading data"? ---> For this please check the XML.
  19. fusion charts in https environment

    Hi, Could you please try removing the Pragma: no-cache and Cache-control: no-cache from the IIS 6.0 server? Please refer to these links for more information on the same: http://www.fusioncharts.com/forum/Topic5033-40-1.aspx http://www.fusioncharts.com/forum/Topic5161-28-1.aspx
  20. urlencode problems

    Hi, Could you please render the chart in debug mode and send us the debug output, it will show you what data URL is being called? To render the chart in debug mode please use this code: var myChart = new FusionCharts("[% page.static %]/charts/Pie3D.swf?debugMode=1", "myChartId", "600", "200");
  21. Hi, I am afraid, it is not possible as of now.
  22. Hi, To work with multi-series charts: 1. Add Category names: addCategoryFromDatabase(oRs, "LVALUE") 2. Add Dataset series names and Value: Call FC.addDatasetsFromDatabase (oRs, "{dataset series field}", "{Value field}", "", "") Please refer to this for more information: http://www.fusioncharts.com/docs/Contents/ASPClassAPI/Functions.html#dbhandling
  23. Gantt milestone toolText & link

    Hi, Yes these are supported in FusionCharts FREE. Could you please let us know what issue you are facing?
  24. Save image as not working

    Hi, You would need to modify the FusionCharts.jsp file as below: public String createChartHTML(String chartSWF, String strURL, String strXML, String chartId, int chartWidth, int chartHeight, boolean debugMode) { /*Generate the FlashVars string based on whether dataURL has been provided or dataXML.*/ String strFlashVars = ""; Boolean debugModeBool = new Boolean(debugMode); if (strXML.equals("")) { //DataURL Mode strFlashVars = "chartWidth=" + chartWidth + "&chartHeight=" + chartHeight + "&debugMode=" + boolToNum(debugModeBool) + "&dataURL=" + strURL + ""; } else { //DataXML Mode strFlashVars = "chartWidth=" + chartWidth + "&chartHeight=" + chartHeight + "&debugMode=" + boolToNum(debugModeBool) + "&dataXML=" + strXML + ""; } strFlashVars = strFlashVars + "&registerWithJS=1"; StringBuffer strBuf = new StringBuffer(); The registerWithJS=1 parameter is required when you are working with JavaScript ExternalInterface i.e. saveAsImage();.
  25. Hi, Could you please send us the complete generated XML to support [at] fusioncharts.com?