Rahul Kumar

L1 Moderators
  • Content count

    1,253
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Rahul Kumar

  1. Changing the "action area" of candlestick

    Hi, I am afraid, it is not supported as of now.
  2. error serverside image saving asp.net

    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
  3. Hi, I am afraid, it is not possible to show legend in multiline as of now.
  4. 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.
  5. Hi, Could you please try using the attached FusionCharts.js file? FusionCharts.zip
  6. X-axis label Tilt Garbage characters!

    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.
  7. Gantt Chart Orientation

    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.
  8. setDataXml does not clear previous load

    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
  9. Server-side only PDF/image export

    Hi, I am afraid, it is not possible, since FusionCharts is a flash component which requires browser to be rendered at client side.
  10. Fusionchart dataURL method with DNN

    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&registerWithJS=1&dataURL=./test/aspXML.asp"> <param name="quality" value="high" /> <embed src="./Charts/AngularGauge.swf" flashVars="&MyFirstChart&registerWithJS=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"); }
  11. Link in Category label

    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.
  12. Embedding in MS Access

    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"
  13. Fusionchart dataURL method with DNN

    Hi, Could you please embed the chart using HTML <OBJECT> tag and try once?
  14. gantt xml invalid

    Hi, Please use ' for single quote character (') instead of using '. Please see the attached XML file. data.xml
  15. X-axis label Tilt Garbage characters!

    Hi, Could you please send us the XML file and the chart's SWF name?
  16. Server-side only PDF/image export

    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.
  17. Hi kelly, We have successfully implemented FusionCharts to WalterZorn javascript tooltip, please see the attached sample file. Sample.zip
  18. Turn off secondary axis?

    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' ...>
  19. upgrade multi line chart with date series

    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.
  20. Cannot open the downloaded Image

    Hi, I am afraid, it is not possible to add Y-Axis even if you are using VLINE, as of now.
  21. 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.
  22. Generate chart image programatically

    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.
  23. websphere portlet crossdomain.xml issue

    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
  24. X-axis label Tilt Garbage characters!

    Hi, Could you please update your chart to v3.1 and try again?
  25. FCTime variable

    Hi, Could you please update your chart to v3.1 and try again?