-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Hi, I am afraid, it is not supported as of now.
-
Hi, It seems that there is some issue with UTF-8 encoding, could you please try this attached file once & please let us know the result? ASPNET.zip
-
How to change the Legend line by line corresponding to each dataline
Rahul Kumar replied to YY's topic in XML Issue
Hi, I am afraid, it is not possible to show legend in multiline as of now. -
Error loading fusionscharts in IE8 - Flash player 10.0.12.36
Rahul Kumar replied to Dhruva's topic in Bug Reports
Hi, We have replicated the issue in our lab with Flash Player Version 10.0.22.87 and IE-8, and we did not face any such issue. One possible solution is you would need to uninstall the flash player completely from your machine and then re-install it. Here are the steps to uninstall the Flash Player: 1. Goto C:WINDOWSsystem32MacromedFlash directory. 2. Double click on "uninstall_activeX.exe". 3. Delete all the files from this folder. Now after above steps are completed please install the Flash Player, and run the chart rendering code. Hope the above method will solve your issue, if not then please let us know. -
Error loading fusionscharts in IE8 - Flash player 10.0.12.36
Rahul Kumar replied to Dhruva's topic in Bug Reports
Hi, Could you please try using the attached FusionCharts.js file? FusionCharts.zip -
Hi, Could you please render the chart in debug mode and copy/paste the information given in debug window and post it to the forum? It might be possible that chart's SWF is not updated successfully.
-
Hi, You can set <processes positionInGrid='right' ...> to make it rightmost. Or, it can take value of left. However, the Gantt chart itself cannot come to left of grid.
-
Hi, This could be silly but could you please let us know whether you are using parenthesis after method name? e.g: chart.remove();chart.reInit(); chart.setXMLData(xml); chart.render(); Also could you please try the attached example? ClickHandler.zip
-
Server-side only PDF/image export
Rahul Kumar replied to FusionCharts Support's topic in General usage
Hi, I am afraid, it is not possible, since FusionCharts is a flash component which requires browser to be rendered at client side. -
Hi, Yes, you just need to use HTML embed method, since the previous method writes the javascript tag into the DIV which is not executing. Also, you won't loose any functionalities, if you need to update your chart dynamically then please pass a query string parameter "registerWithJS=1" in FlashVars attribue like below: E.g: <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="400" height="200" id="MyFirstChart" > <param name="movie" value="./Charts/AngularGauge.swf" /> <param name="FlashVars" value="&DOMId=MyFirstChart®isterWithJS=1&dataURL=./test/aspXML.asp"> <param name="quality" value="high" /> <embed src="./Charts/AngularGauge.swf" flashVars="&MyFirstChart®isterWithJS=1&dataURL=./test/aspXML.asp" quality="high" width="400" height="200" name="MyFirstChart" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> And need to change your chart id in updateChart function as follow: function updateChart(){ //Get reference to chart object using Dom ID "ChId1" var chartObj = getChartFromId("MyFirstChart"); //Update its XML Data URL chartObj.setDataURL( "./test/aspXML.asp"); }
-
Hi, I am afraid, this feature is not supported when labels are rotated in v3.1 charts, since we are rendering the label as bitmap to overcome from UTF-8 issue (in rotated mode) and it ignores HTML tags which are used in labels.
-
Hi, 1. Goto to Form design mode. 2. On toolbox window click on "More Controls" button. 3. Now Select "Shockwave Flash Object". 4. Then in the movie URL parameter provide the chart's SWF name. E.g: [object].Movie="Column3d.swf?dataXML=<chart>.........</chart>" or [object].Movie="Column3d.swf?dataURL=data.xml"
-
Hi, Could you please embed the chart using HTML <OBJECT> tag and try once?
-
Hi, Please use ' for single quote character (') instead of using '. Please see the attached XML file. data.xml
-
Hi, Could you please send us the XML file and the chart's SWF name?
-
Server-side only PDF/image export
Rahul Kumar replied to FusionCharts Support's topic in General usage
Hi, You would need to capture FC_Rendered() event and in that event place your code to export the chart image into pdf at server side without user interaction. Please refer to: 1. http://www.fusioncharts.com/docs/Contents/JS_Events.html 2. http://www.fusioncharts.com/docs/Contents/ECServerSave.html 3. And also http://www.fusioncharts.com/docs -> Exporting as Image/PDF section. Please also note that you would required to use our latest v3.1 chart to achieve this feature. -
getChartFromId(chartId).setDataXML on chart in hidden div
Rahul Kumar replied to shamasis's topic in Javascript Problems
Hi kelly, We have successfully implemented FusionCharts to WalterZorn javascript tooltip, please see the attached sample file. Sample.zip -
Hi, Could you please try to specify the limits (Y-Axis Maximum and Y-Axis Minimum) for both the axes, this will force the lineset to draw on the same scale? Example: <chart... PYAxisMaxValue='100' SYAxisMaxValue='100' SYAxisMinValue='0' ...>
-
upgrade multi line chart with date series
Rahul Kumar replied to Rahul Kumar's topic in Installation and Upgrades
Hi, I am afraid, Multiseries chart do not have any dateRangeStart, dateRangeEnd etc. attributes in FusionCharts FREE, it might be some other chart you are using. -
Hi, I am afraid, it is not possible to add Y-Axis even if you are using VLINE, as of now.
-
how is the migration from user licence to developper (to use scroll chart) ?
Rahul Kumar replied to usamike's topic in Installation and Upgrades
Hi, It would not require to change any bit of code(XML tag), if you are upgrading to enterprise licence or to any licence even if you are using evaluation version. Also a single column 2d chart is a single series chart and scroll column 2d is a multiseries chart, that has different XML structure. Please refer to http://www.fusioncharts.com/docs. -
Hi, Could you please use update your chart to v3.1 which has some new feature to export chart as PDF and JPG/PNG. Also to use these features please read our online documentation.
-
websphere portlet crossdomain.xml issue
Rahul Kumar replied to cloud9's topic in FusionCharts and JSP
Hi, "Error in loading data' error message confirms that chart is unable to load/find/access the XML data file, so please make sure that path to xml data file is correct, also try open the xml data file link in a browser. Also for addition information regarding crossdomain.xml please refer to: http://www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html -
Hi, Could you please update your chart to v3.1 and try again?
-
Hi, Could you please update your chart to v3.1 and try again?