-
Content count
2,097 -
Joined
-
Last visited
-
Days Won
12
Everything posted by FusionCharts Support
-
Animation Completed Callback
FusionCharts Support replied to steveddei's topic in Javascript Problems
Hi, I am afraid, there is no such event exposed as of now. You might try hasRendered() which would return true, along with a timer. -
Hi, I am afraid, this is not possible as of now using QTP.
-
Can't automatically save a JPEG
FusionCharts Support replied to zhanng's topic in Suggestions & Requests
Hi, Thanks for the code. Your code works perfectly in our labs with the alerts. We have only modified your paths (in HTML as well in XML) to suit our path structure. Please make sure that all the paths that you are specifying are correct. * Please chek first the path for exportHandler. Try once with download option to see whether the exportHandler file is actually getting accessed and called. In XML you can set path relative to the HTML rather than making it relative to the whole site. 2. If you find that the download is working, please see the folder write permission. Waiting for your reply as well wishing to sholve your issue as fast as possible. -
FusionChart not rendering in IE but works fine on FF, also work fine on my development box but not on the webserver
FusionCharts Support replied to srividya_sharma's topic in General usage
Hi, There are issues with SSL in IE or loading the chart as well. FusionCharts can work over HTTPS (Secure Sockets Layer too) in the same way as HTTP. However, if you're using the dataURL method, you need to set a few headers. Loading XML files in Flash over an SSL Connection in Internet Explorer fails if the Pragma:no-cache or Cache-control:no-cache HTTP headers are set on the XML file or the XML data provider file. The "Cache: no cache" header causes IE to actually return ERROR_INTERNET_UNABLE_TO_CACHE_FILE HTTPS as the content instead of the XML data. So, if you're using dataURL method on Internet Explorer, you need to make sure that the server does not send no-cache headers for the XML data. To do so, set the following headers for your XML Data provider page: Cache-Control: cache, must-revalidate Pragma: public -
I am afraid, this feature is not available as of now.
-
FusionCHarts object methods exposed in javascript
FusionCharts Support replied to erezharari's topic in Javascript Problems
>> can be done. >> A page reload would automatically re render the chart. -
Hi, Please refer to the page: http://www.fusioncharts.com/docs/Contents/JS_API.html
-
Chart not rendering on Browser(IE) back button click.
FusionCharts Support replied to Avinash_ken's topic in Javascript Problems
I live link for us to test this would be much appreciated. -
Hi Gondrong, Did you check the path to FusionCharts.js file as well whether proper casing of the file-names are maintained. By path I mean the path for FusionCharts.js file should be relative to the path of the HTML file that is getting opened in the popup.
-
How do I keep the same chart-settings
FusionCharts Support replied to pekem's topic in General usage
You can not save chart settings inside the chart...that would be too specific for a generic component that we provide.. May I try explaining the implementation method? (There can be many methods) Since the chart's cosmetics are the settings that you want to keep same for all the charts, should I assume that all these settings should be in <chart> node? 1. If so all you need to do is keep the XML files' <chart> node without any settings that you want common in all charts. 2. In the page(s) where you load the chart(s) keep a copy of the common settings in a global JavaScript string variable, say strSettings. 3. Instead of using dataURL method to load the XML directly into the chart first load the required XML into JavaScipt as ResponseText using AJAX calls. 4. Once the AJAX call is complete, the ResponseText will load the XML from the file in a JavaScript string variable, say RTXML 5. Now remove "<chart" with "<chart " + strSettings +" " and store, say in dataXML String variable. you can use code like dataXML = RTXML.replace(/<chart /, "<chart " + strSettings +" "); 6. Once done, render the chart using dataXML method and get the finally composed XML from dataXML varaible. Assing this variable to setDataXML() function of FusionCharts JavaScript class while you render the chart. -
Problem with second call to the setDataUrl function in IE7
FusionCharts Support replied to Webfab_Staffan's topic in Javascript Problems
Hi, This generally occurs when you have same id/name assigned to the chart's DOMId as well as other HTML element or used as variable name...please make sure to have unique chart DOMId...IE is incapable to determining which object to use for this function call...as if you have 2 or more students of the same name - John in a class and you ask for John...it would be difficult to determine which John you have asked for...and in our case IE 's mind traps into a memory leak...hence the error.. Firefox is smart enough and additionally figures out which object does really possesses/is capable of handling that function call and picks up smartly and perfectly....the chart object that is capable of handling the JS API 0 setDataURL() -
Showing/Hiding parts of a line chart with Javascript and checkboxes
FusionCharts Support replied to jesterbear's topic in General usage
Can be done... * FusionCharts does not store data...it takes data from a data source which can be changed/built/re-built (separaetely) dynamically/manually/when asked-for etc. as per needed, as per Business Logic/implementation/requirements... store you data in database, and update as per needed and let another code query it to fetch the latest data from the database, (build XML) and send it over to the chart to display the latest trend etc. -
filtering line graph based on checkbox selection (ajax / spry)
FusionCharts Support replied to chumba's topic in General usage
Just going through this code...and found a silly mistake....see the text in bold... <INPUT TYPE='Checkbox' name='KC Koshy' onClick... this.document.productSelector.KC Koshy.checked==true Can you figure out the space between KC and Koshy ? Variables names can not have spaces ... its almost a generic programming Commandment..... When I removed the spaces from these two and make them: <INPUT TYPE='Checkbox' name='KCKoshy' onClick... this.document.productSelector.K Koshy.checked==true The code runs brilliantly with a line chart with 3 datasets. -
Greying out HTML Page on AJAX Postback
FusionCharts Support replied to angelalaw's topic in General usage
Hi, If anyone is facing issues like these still, all you need to set first is the WMODE of the chart setting Transparent parameter. If you are using ASP.NET Wrapper class you can do using RenderChart() or RenderChartHTML() function's transparent parameter. Please see http://www.fusioncharts.com/docs/Contents/CS_BasicExample.html If you are not using these functions you can also manually add WMODE parameter that would set as 'transparent' in OBJECT and EMBED - HTML tags. -
Hi, We are happy to release the v1 Beta of FusionMaps for Flex - animated, interactive and dynamic maps for your Adobe Flex Solutions. FusionMaps for Flex boasts of the following: Provides over 314 maps including all continents, countries, US states, and states/counties of a lot of other countries.API for Drill-down, mouse interactivity, export etc.Custom Markers, shapes, connector linesWorks with Flex Builder 2, Flex Builder 3 and Flash Builder 4 (Flex SDK 2/3/4)Simple copy-paste style installationLots of code samples and documentation You may download the beta from www.fusioncharts.com/flex/download/mapsbeta. You may see the online demos at : www.fusioncharts.com/flex/maps/demos/drilldown or www.fusioncharts.com/flex/maps/demos/uselection. To read more on how to use FusionMaps for Flex, you may also visit the Online Documentation at www.fusioncharts.com/flex/maps/docs. Your feedback is VERY important to us and we would love to hear any suggestions, complaints, modifications, feature requests, compliments etc.
-
IF we strictly follow FusonCharts chart names - There is no Dual Y Axis Bar charts as of now. So far FusionCharts jargons are concerned we call all bars rising vertical as Columns and all going horizontal as bars. THE CHART BELOW IS A BAR CHART THE CHART BELOW IS A COLUMN CHART FusionCharts has lots of Dual Y Axis Column charts like : 2D Dual Y Combination : http://www.fusioncharts.com/docs/Contents/ChartSS/Combi2DDY.html Column 3D + Line Dual Y : http://www.fusioncharts.com/docs/Contents/ChartSS/MSCol3DLineDY.html Stacked Column 3D + Line Dual Y : http://www.fusioncharts.com/docs/Contents/ChartSS/StCol3DLineDY.html Multiseires Stacked Column 2D + Line Dual Y : http://www.fusioncharts.com/docs/Contents/ChartSS/MSStColLineDY.html Scroll Combination 2D Chart (Dual Y): http://www.fusioncharts.com/docs/Contents/ChartSS/ScrollCombiDY2D.html
-
Repost: How can I combine years and quarters on the same chart?
FusionCharts Support replied to ChartsJazz's topic in General usage
Hi, I am afraid, we do not have such chart as of now. -
Repost: How can I combine years and quarters on the same chart?
FusionCharts Support replied to ChartsJazz's topic in General usage
Hi, Do you think chart like the image attached below would cater to your needs? If so you can try MSCombi3D chart for with clustered settings. Please check it live :http://www.fusioncharts.com/gallery/Chart.asp?mscombi3d_2 2. When will the next version of FusionCharts be released? >> We are working on FusionCharts v4 (a mojor release) which we expect to release on Q3 of 2010. -
where to get the values of x and y co-ordinates
FusionCharts Support replied to eshban's topic in Using FusionMaps XT
Hi, I am afraid, we do have have these country markers for world map, but you can always use the GUI to make one of your own,. -
hi, You can place invisible/visible click-able markers which would proxy the click for those entities.
-
Charts display in Firefox, but not in IE or Chrome.
FusionCharts Support replied to spireite's topic in FusionCharts and ASP.NET
Hi, Can you please send us 1. The Asp.Net code that you are using to render the chart. 2. The HTML that is getting generated on the browser (you can get it from source view of each browser) 3. FusionCharts.js that you are using in the application. ( At times we find many automated code editor update the paths inside the js code and make things complex and unusable) Make sure to send files and code from the test server where its not working. -
Hi, Is it only in saving PDF that you are facing issue? Your export handler is working normally for JPG and PNG from our test app which i using your URL as export handler, but failed for PDF. Could you please check you have placed FCExporter_PDF.php file too and included that file in the main FCExporter.php file? It seems that even if PDF is specified, the FCExporter_IMG.php handler is loaded ( I get status message "statusMessage= Invalid Export Format." - which is ONLY raised from FCExporter_IMG.php) which, obviously fails to handle PDF. Could you please send us the export handler files (FCExporter.php,FCExporter_PDF.php, FCExporter_IMG.php) if you have modified any part of the code, so that we can check and let you know.
-
Hi, Please add wmode='transparent' in all <embed> element too - if you are testing this in non-Internet Explorer browser. NOTE: OBJECT element is for Internet Explorer and for other browsers its EMBED. Also please add setTransparent(true); if you are using JavaScript embedding method. var myChart = new FusionCharts("Charts/AngularGauge.swf", "myChartId", "300", "300", "0", "0"); myChart.setDataURL("xml/guagedata.xml"); myChart.setTransparent(true); myChart.render("chartdiv"); Make sure that you have the updated FusionCharts.js file (that has this function defined in it). You can open the file in a text editor and search for 'setTransparent'.
-
this scope delegate issue for link=javascript
FusionCharts Support replied to mikegiddens's topic in Using FusionMaps XT
Hi, I am afraid, there is no direct way to do so, the FusionCharts JavaScript object and the chart object are two separate elements as well when you call a JavaScript function from a chart's link it takes window scope. -
Error Summary HTTP Error 405.0 - Method Not Allowed
FusionCharts Support replied to Mansi Shah's topic in FusionCharts and ASP.NET
Hi Mansi, Apologies for the delay. If you are using ASP.NET 2.0 or more you can use one of our Assemblies that would help you generate chart as image at server side. Pleas send us your order id to [email protected] to get the Assembly. References: http://www.fusioncharts.com/forum/Topic23945-31-1.aspx#bm23949