-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Hi, Could you please try using showDivLineSecondaryValue='0' and showSecondaryLimits='0' attributes in <chart> element?
-
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
-
Long charts rendered with different background colors
Rahul Kumar replied to Rahul Kumar's topic in Bug Reports
Hi, Could you please send us the XML and the code? -
Hi, Could you please refer to: http://www.fusioncharts.com/forum/FindPost12210.aspx
-
Chart error after downloading file in IE 7.0
Rahul Kumar replied to Impelsys's topic in FusionCharts and ASP.NET
Hi, Please refer to: http://forums.devshed.com/javascript-development-115/ie7-errormessage-internet-explorer-cannot-download-unspecified-error-492014.html -
:w00t: Save Graph as Image By Code
Rahul Kumar replied to anil_kumar_1's topic in FusionCharts and ASP.NET
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. -
Drill-Down charts are not working after using save as image option
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and ASP.NET
Hi, Could you please update your chart to V3.1 and try again? -
How to display data in table format in FusionCharts
Rahul Kumar replied to maks's topic in FusionCharts and ASP.NET
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. -
Refreshing Column3D chart in the background
Rahul Kumar replied to MikiWatts's topic in FusionCharts and ASP.NET
Hi, I am afraid, it is not possible, but to reduce the effect you can use animation='0' attribute in <chart> element. -
Hi, I am sorry, it is not possible as of now.
-
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?
-
Rendering charts from VB and using chart links
Rahul Kumar replied to gt_cristian's topic in FusionCharts and ASP.NET
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");} -
How can I save three charts as images using one JavaScript
Rahul Kumar replied to Vova's topic in FusionCharts and ASP.NET
Hi, Please see to this post: http://www.fusioncharts.com/forum/Topic12224-32-1.aspx -
Fusion Charts 3.1 Client Side Exporting Problem with Mozilla
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and JSP
Hi, Could you please try to resolve this issue with this link: http://www.fusioncharts.com/docs/Contents/ECReferenceDebugJS.html -
Hi, Please see the attached example, hopefully it will solve your issue. Sample.zip
-
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.
-
Multilevel bugs when trying to use percent symbol
Rahul Kumar replied to salvini's topic in Using PowerCharts XT
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. < - <> - > -
2D Dual Y Combination Chart ignoring PYAxisMinValue
Rahul Kumar replied to Rahul Kumar's topic in Bug Reports
Hi, I am afraid, it is not possible as of now. -
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
-
Hi, Could you please use negative value (-ve) in margin attributes (mapTopMargin, mapLeftMargin, mapRightMargin, mapBottomMargin) and try once?
-
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.
-
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
-
Fusion chart rendering problem in jsp
Rahul Kumar replied to nulurambabu's topic in FusionCharts and 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) -
Hi, I am afraid, it is not possible as of now.
-
Hi, Please see to the attached example. FlashExample.zip