Rahul Kumar

L1 Moderators
  • Content count

    1,253
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Rahul Kumar

  1. Turn off secondary axis?

    Hi, Could you please try using showDivLineSecondaryValue='0' and showSecondaryLimits='0' attributes in <chart> element?
  2. How to change background color?

    Hi, Could you please try using bgColor attribute in chartParams query string? Example: ?v=3&chart=[chartType=column2D;chartWidth=400;chartHeight=280]&chartParams=[caption=Sales by Week;subcaption=CurrentMonth;yAxisName=Revenue; xAxisName=Weeks;canvasbgColor=ffffff;canvasBorderThickness=1; canvasBorderColor=eece8c;formatNumberScale=1; bgColor=ffffff,ffffff] &labels=Week 1;Week 2;Week 3;Week4&data=40800;31400;26700;55400 For beginners' tutorials please refer to : http://www.fusioncharts.com/filemaker/docs/Contents/QS/QSFChartParams.html
  3. Long charts rendered with different background colors

    Hi, Could you please send us the XML and the code?
  4. Export to PDF is blank?

    Hi, Could you please refer to: http://www.fusioncharts.com/forum/FindPost12210.aspx
  5. Hi, Please refer to: http://forums.devshed.com/javascript-development-115/ie7-errormessage-internet-explorer-cannot-download-unspecified-error-492014.html
  6. :w00t: Save Graph as Image By Code

    Hi, Could you please update your chart to V3.1, which has improved image saving mechanism. Please refer to: "http://www.fusioncharts.com/docs/ -> Exporting as Image/PDF" section.
  7. Hi, Could you please update your chart to V3.1 and try again?
  8. Hi, Could you please try using our Grid chart, which shows data in tabular format. Please refer to: http://www.fusioncharts.com/docs/ -> Grid Component.
  9. Refreshing Column3D chart in the background

    Hi, I am afraid, it is not possible, but to reduce the effect you can use animation='0' attribute in <chart> element.
  10. y axis values

    Hi, I am sorry, it is not possible as of now.
  11. Custom Link when click on chart

    Hi, Could you please try using clickURL='{link to open'} attribute in <chart> element, you need to use FusionCharts Link Format, please see http://www.fusioncharts.com/docs -> Drill Down Charts?
  12. Rendering charts from VB and using chart links

    Hi, I am afraid, FusionCharts can only call JavaScript methods and no any server side script methods. And to work with this situation you would need to use AJAX or using hardcoded javascript. To move forward with the second method you can make a javascript method and link it to the chart with link attribute (<set value='323' label='label' link=' loadChart(data)' />), now need to write the code to update or create a new chart in loadChart method. Example: function loadChart(val){ var xmlStr = "<chart><set value='" + val + "' /> </chart>"; var chart = new FusionCharts ("../FusionCharts/Column2d.swf","col",300,400,false,true);chart.setDataXML (xmlStr); chart.render ( "chartdiv");}
  13. Hi, Please see to this post: http://www.fusioncharts.com/forum/Topic12224-32-1.aspx
  14. Hi, Could you please try to resolve this issue with this link: http://www.fusioncharts.com/docs/Contents/ECReferenceDebugJS.html
  15. Placing chart inside javascript tooltip

    Hi, Please see the attached example, hopefully it will solve your issue. Sample.zip
  16. FusionCharts

    Hi, Could you please try rendering the chart using HTML tag or by using RenderChartHTML method? Also we have some AJAX examples at http://www.fusioncharts.com/LiveDemos.asp which you can use for reference.
  17. Hi, Please see the following list: List of characters that requires encoding: 1. If you are using dataXML method. % - %25 & - %26 + - %2b < - %26lt; > - %26gt; 2. If you are using dataURL method. < - <> - >
  18. 2D Dual Y Combination Chart ignoring PYAxisMinValue

    Hi, I am afraid, it is not possible as of now.
  19. US Electoral Demo demo

    Hi, Could you please try to set your Flash Player global security setting and try again? Please see this for more information: http://www.fusioncharts.com/forum/FindPost8077.aspx
  20. Space/Margin at the top of State Maps

    Hi, Could you please use negative value (-ve) in margin attributes (mapTopMargin, mapLeftMargin, mapRightMargin, mapBottomMargin) and try once?
  21. Export fusion chart to Excel

    Hi, If you want to add chart to excel then you need to convert it into image and insert this image into excel. Also, as of now, there is no any API for excel which converts chart to image, you need to do it manually by rendering the chart into an HTML page and save it as image, Our new V3.1 supports client side image capturing feature which you can use, this feature will work in Evaluation version too.
  22. FC_Event

    Hi, It occurs if you are running your HTML locally. By default Flash Player's security setting blocks invoking/calling JavaScript from SWF (Flash Movie), so you need to reset your setting into Global Security Setting panel. Please see this post for more information: http://www.fusioncharts.com/forum/FindPost8077.aspx
  23. Fusion chart rendering problem in jsp

    Hi, Could you please try using these methods: 1. If your .swf file is packaged inside the portlet, you need to encode the URL the same way you would encode the URL to a .gif file for an IMG tag. Source: http://groups.google.com/group/ibm.software.websphere.portal-server/tree/browse_frm/month/2006-02?_done=%2Fgroup%2Fibm.software.websphere.portal-server%2Fbrowse_frm%2Fmonth%2F2006-02%3F&& 2. For IBM WebSphere Portal Server 6.0, the solution is to declare in your object code a version < 7.0. I'm not sure why that is, unless websphere portal itself has a built in flash plugin for flash rendering to the client which is independents of the clients plugin. <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="20%" height="20%" id="CSI_Flash_ENG" align="middle"> <param name="allowScriptAccess" value="sameDomain" /> <param name="allowFullScreen" value="false" /> <param name="movie" value="CSI_Flash_ENG.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /> <embed src="CSI_Flash_ENG.swf" quality="high" bgcolor="#ffffff" width="20%" height="20%" name="CSI_Flash_ENG" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> Source: http://www.experts-exchange.com/Software/Server_Software/Application_Servers/Java/IBM_Websphere/Q_23788923.html?sfQueryTermInfo=1+%22webspher+portal+6.0+sever%22 (If you are not getting this page's solution then please try to search with "Getting Macromedia Flash Movie to run in Websphere Portal 6.0 portlet" text in google, and goto its first result, hopefully you will be able to see the complete page)
  24. Get current dataURL from a chart

    Hi, I am afraid, it is not possible as of now.
  25. Help! FusionCharts on Flash

    Hi, Please see to the attached example. FlashExample.zip