-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Hi, Could you please try using between two line and try again. Example: $FC->addChartData($bs_array[$i] - $af_array[$i],"hoverText=Line1 Line2");
-
Change Gantt Chart Properties Dynamically
Rahul Kumar replied to Rahul Kumar's topic in Using FusionWidgets XT
Hi, I'm afraid, it is not possible as of now. -
Hi, You are most welcome, and thank you for purchasing the licence.
-
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).
-
Hi, I am afraid, only shadows are not being captured as of now. But you can have the round edges in the chart image.
-
Problem with export chart to Pdf and Gif On Fusion Chart V3
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and ASP.NET
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); } -
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
-
i want to change dails values dynamically
Rahul Kumar replied to mahesh's topic in Using FusionWidgets XT
Hi, Could you please make sure that you are using registerWithJS=1 in your application? -
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)?
-
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.
-
Can I put a chart on another chart?Can I put a chart as a part of another's?
Rahul Kumar replied to pplingling's topic in Using PowerCharts XT
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. -
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.
-
Hi, I am afriad, it is not possible. You would need to run the slide show once, if you re-open your PPT.
-
some FusionCharts methods not suported!!!!
Rahul Kumar replied to Rahul Kumar's topic in Using FusionMaps XT
Hi, Could you please refer to: http://www.fusioncharts.com/forum/Topic5009-47-1.aspx http://www.fusioncharts.com/forum/FindPost8077.aspx -
Hi, I'm afraid, it is a known issue with FireFox. And there is no cure for this as of now.
-
Hi, I'm afraid, it is a known issue with FireFox. And there is no cure for this as of now.
-
Hi, You are welcome and we're glad that everything is now working.
-
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.
-
fusion charts in https environment
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and ASP.NET
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 -
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");
-
separation of glass effect and round edges for column bars
Rahul Kumar replied to Mangalores's topic in Suggestions & Requests
Hi, I am afraid, it is not possible as of now. -
Please help me with multi-series and data comming from DB (using asp class/DB_dataURLl)
Rahul Kumar replied to phlk's topic in FusionCharts and ASP
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 -
Gantt milestone toolText & link
Rahul Kumar replied to Rahul Kumar's topic in Using FusionWidgets XT
Hi, Yes these are supported in FusionCharts FREE. Could you please let us know what issue you are facing? -
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 + "®isterWithJS=1"; StringBuffer strBuf = new StringBuffer(); The registerWithJS=1 parameter is required when you are working with JavaScript ExternalInterface i.e. saveAsImage();.
-
Problem while accessing the SharePoint List items in Fusion charts
Rahul Kumar replied to sami.khan's topic in Miscellaneous
Hi, Could you please send us the complete generated XML to support [at] fusioncharts.com?