-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Problem with gantt charts and Flash Player 10
Rahul Kumar replied to Arindam's topic in Using FusionWidgets XT
Hi, Could you please try to run your application in a different machine? And let us know how it worked? -
Problem with gantt charts and Flash Player 10
Rahul Kumar replied to Arindam's topic in Using FusionWidgets XT
Hi, Could you please follow the attached image & tell us your installed Flash Player Version from there? -
Hi, We have tested FusionCharts with FP 10 and IE 7 in our lab and it is working smoothly, we have not found any incompatibility. Here are some more detailed information that will help you to uninstall & again install FP 10. 1. Browser to your system's C:WINDOWSsystem32MacromedFlash directory. 2. Run uninstall_activeX.exe file. This will uninstall your current Flash Player. 3. Download FP 10 from http://www.adobe.com/support/flashplayer/ts/documents/tn_19166/Install_Flash_Player_10_ActiveX.zip. 4. Extract the zip file and run "Install Flash Player 10 ActiveX.exe". This will install FP 10 into your PC. And after that try to see the chart. Let us know if this does not solve your problem.
-
Hi, I am afraid; it is not possible in FusionCharts Free. But in FusionCharts V3 there is an attribute rotateYAxisName='0', you can use this, if you do not wish to rotate y-axis name, set this as 0. It specifically comes to use when you've special characters (UTF8) in your y-axis name that do not show up in rotated mode.
-
Chinese characters in labels and tooltips
Rahul Kumar replied to jasontruell's topic in Using FusionMaps XT
Hi, Please make sure that your XML file is save as UTF-8 enabled. Could you please see this post http://www.fusioncharts.com/forum/FindPost8054.aspx for more information? -
Hi, I am afraid; the attributes rotateNames='1' and rotateYAxisName='1' is not supported as of now. (If you are using it with UTF characters).
-
Hi, Could you please send us the XML, and please also tell us whether you are using dataXML or dataURL method?
-
Hi Terry, FusionCharts is a Flash Charting component, it need not to be installed into your computer, instead just copy the SWF file into your project folder and write some code in order to load chart into your HTML page. Could you please read our documentation at www.fusioncharts.com/docs -> Creating your first chart. before going any further?
-
Hi asavva, FC.Handler is the Window Handler for ShockWave flash object, in WinForm application. It is just like hWnd property of control, If you are familiar with VB 6.0 or VC++. Without specifying the FC.Handler, ChartToImage.ChartToImage function could not determine the rectangular area of the control. Also if you are not able to get it work, then please read this thread from starting, and download all the files, as they are linked together.
-
alpha transparency for the area of a 3D Combi Chart
Rahul Kumar replied to coolegg's topic in XML Issue
Hi, I am afraid; this is not possible as of now. -
Dynamically update swf type and data via setDataXML
Rahul Kumar replied to Rahul Kumar's topic in Javascript Problems
Hi Alberto, Could you please make sure that XML for MSLine and MSColumn2D chart is different than Pie chart? Since Pie chart is a single series chart and MSLine, MSColumn2D are Multi-Series chart. -
Dynamically update swf type and data via setDataXML
Rahul Kumar replied to Rahul Kumar's topic in Javascript Problems
Hi Alberto, Could you please make sure that SWF path is correct? -
PowerPoint - "Retrieving Data. Please Wait" and "No Data to Display" message (error)
Rahul Kumar replied to SPetrie's topic in Miscellaneous
Hi, Could you please try using these steps? 1. Add Shockwave Flash Control to your PowerPoint Slide. 2. Set the movie property like below: a. Movie=file:///d:chartscolumn3d.swf?dataXML=<chart><set value='10' /><set value='5' /></chart> -OR- b. Movie=file:///d:chartscolumn3d.swf?dataURL=D:data.xml 3. Set FrameNum=0 4. Set Playing property to true (Playing=True). And then run your slide. Doing Step 3 and 4 is necessary every time when you are running a new slide show. -
Hi, Could you please try using these steps to do the same? 1. Add Shockwave Flash Control to your PowerPoint Slide. 2. Set the movie property like below: a. Movie=file:///d:chartscolumn3d.swf?dataXML=<chart><set value='10' /><set value='5' /></chart> -OR- b. Movie=file:///d:chartscolumn3d.swf?dataURL=D:data.xml 3. Set FrameNum=0 4. Set Playing property to true (Playing=True). And then run your slide. Please Note: Step 3 and 4 is necessary every time when you are doing slide show.
-
Hi, Could you please try removing the Pragma: no-cache and Cache-control: no-cache from the server? Please also follow 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 try these solutions? 1: If you want to capture image of a chart without user interaction then you just need to invoke saveAsImage from FC_Rendered, (this method is called automatically when chart load it self completely). More information can be found here http://www.fusioncharts.com/Docs/Contents/JS_Overview.html . Also could you please try using the following code: <html> <head> <script language="JavaScript" src="../../../JS/FusionCharts.js"></script> <script LANGUAGE="JavaScript"> function FC_Rendered(domID) { var chart= getChartFromId("Chart1"); chart.saveAsImage(); } </script> </head> <body bgcolor="#ffffff"> <div id="Div_YTDChart" align="center">The chart will appear within this DIV. This text will be replaced by the chart.</div> <param name="allowScriptAccess" value="always" /> <script type="text/javascript"> var FChart = new FusionCharts("../../../V3/Column3D.swf?registerWithJS=1","Chart1","900","300","0","1"); FChart.setDataURL("../xml/saveAsImage.xml"); FChart.render("Div_YTDChart"); </script> </body> </html> 2: I am afraid, you can not modify the saveAsImage(), since this function a chart's function & it is exposed in JavaScript. 3: Yes, you could create a Web Page dynamically with the captured image, but to doing so, you need to change the code for the "FusionChartsSave.xxx", so that your chart's image appears directly on the page instead of opening a Save dialog box.
-
Transparent Graphs have Black Background when Printed
Rahul Kumar replied to unfoldedorigami's topic in Bug Reports
Hi, Could you please send us your code, so that we can debug it? -
Hi, 1. You could not call FusionChartsSave.aspx or any other ASPX locally, as it requires server(IIS) to parse the ASPX to HTML. 2. Could you please attach your code in the post? So that we can debug it easily.
-
Hi, I am afraid it is not possible as of now.
-
Hi, You can call saveAsImage (externalInterface) of charts even if it is not rendered using FusionCharts.js (JavaScript). Could you please check your code, It should be like the following: <script language="javascript"> function getImage() { var chart = getChartFromId("chart1Id"); chart.saveAsImage(); } </script>
-
Hi Zanata, I am afraid that your code will not work, until you do not change your global settings. Because by default Flash ignores any JavaScript call if it is made through Local. And we have tested your code it is working fine.
-
save multiple charts to image with iframe, javascript function call doesn't work in firefox.
Rahul Kumar replied to FusionCharts Support's topic in General usage
Hi, Could you please let us know why are you using <object classid="01" ...> ? It should be exactly like <object classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000" ...> because it is the Class ID of Flash Player & IE recognize embedded object by its Class ID. Another problem is you have missed out to give id="001" ... id="005" in embed tag due to this FireFox could not handle the request as it is unable the find the embeded object in the iframes HTML page. Please replace your code with the following code in all iframe(x).html files: <object classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="420" height="190" id="001" > <param name="movie" value="../../charts/Scatter.swf" /> <param name="FlashVars" value="registerWithJS=1&dataURL="../../charts/data_XYScatter.xml"> <param name="quality" value="high" /> <embed src="../../charts/Scatter.swf" flashVars="registerWithJS=1&dataURL="../../charts/data_XYScatter.xml" quality="high" width="420" height="190" id="001" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> You can use the following code to loop through the iframes: for (var i=0;i<top.frames.length;i++){ top.frames.saveChart(); } NOTE: Please remove the space between : and D in classid="clsid: D27... -
Transparent ScrollLine2D chart not scrolling in Firefox
Rahul Kumar replied to stampos's topic in Bug Reports
Hi, Could you please mention your Flash Version into the post along with the source codes? -
Hi, The name of MSSpline.swf is "Multi-series Spline 2D Chart". Also for queries about Licensing issue you need mail to our support department. EDIT: You need to use alpha property of the Line (which uses Anchors) to 1, so it will make line disappears and just shows the Anchors. We have attached the sample XML file for reference. data.xml
-
Hi, I am afraid, the link you have given is not using XY Plot chart functionality. That is MSSpline.swf chart, it comes with PowerCharts bundle.