-
Content count
2,097 -
Joined
-
Last visited
-
Days Won
12
Everything posted by FusionCharts Support
-
Error Summary HTTP Error 405.0 - Method Not Allowed
FusionCharts Support replied to Mansi Shah's topic in FusionCharts and ASP.NET
Hi, You can try once setting the FC_Exported callback listner and it willl give you the a JS object which contains notice if there is some error and problem and also success flag. -
Error Summary HTTP Error 405.0 - Method Not Allowed
FusionCharts Support replied to Mansi Shah's topic in FusionCharts and ASP.NET
Hi, Please make sure that you have a .... ExportHandlers/ASP_Net/Chart_Images/ folder in your server. As per our documentation : /// '. /' ( without the space after .) is the directory where the FCExporter.aspx file recides. -
Error Summary HTTP Error 405.0 - Method Not Allowed
FusionCharts Support replied to Mansi Shah's topic in FusionCharts and ASP.NET
Hi, FusionCharts uses POST method to send data to the server export handler. 405.0 error generally says that this verb is not supported. Please let me know, whether you are calling both methods simultaneously or separately. Also please make sure that you are providing the full path of the export handler file along with the path : e.g. exportHandler='http://www.yoursite.com/ExportHandlers/FCExporter.aspx' -
Is It Possible To Add Notes/Remarks To LineGraph DataPoints?
FusionCharts Support replied to Kiran Kumar's topic in FusionCharts and JSP
Hi Kiran, I am afraid, this is not possible as of now with the complied swf files. You can get the source from Enterprise license and remake the code to add balloon tooltips like these on hover event. NOTE: We are coming up with tooltip customization like these in our next major version v4 in Q3/Q4 of 2010. -
VB.Net code giving error: Public member 'setChartType' on type 'FusionCharts' not found
FusionCharts Support replied to a topic in FusionCharts and ASP.NET
Hi, We do have support for VB.NET. http://www.fusioncharts.com/docs/Contents/VBNET_BasicExample.html http://www.fusioncharts.com/docs/Contents/VBNET_Array.html http://www.fusioncharts.com/docs/Contents/VBNET_Form.html http://www.fusioncharts.com/docs/Contents/VBNET_DB.html http://www.fusioncharts.com/docs/Contents/VB_MasterPages.html http://www.fusioncharts.com/docs/Contents/VB_UpdatePanel.html http://www.fusioncharts.com/docs/Contents/VBNET_JS_URL.html http://www.fusioncharts.com/docs/Contents/VBNET_JS_XML.html BluePrint Application: http://www.fusioncharts.com/Downloads/Blueprint/FusionCharts_VBNET.zip But, we do not as of now have a chart's data building API in ASP.NET. We have this in our wish-list. Cheers! -
Any Win Server 2008 R2 users out there?
FusionCharts Support replied to toddbailey's topic in Installation and Upgrades
Hi, It seems that you are compiling in 64 bit mode which is not supported. Please try once compiling in 32 bit mode. -
Hi, Presently, we have a solution for .net server. Using the assembly you can silently (invisibly) load a chart at server side and save the chart as image into a server folder. Please send us your customer id to [email protected] to get the assembly.
-
Can someone simply show me how to make a chart from VB.net?
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
Hi, FusionCharts.asp and FusionCharts_Gen.asp are designed for Classic ASP and not ASP.NET. Hence, they are likely to be unusable in ASP.NET -
The flash object doesn't scroll along with the window
FusionCharts Support replied to HeMan's topic in General usage
Hi, Could you please try once setting the WMODE of the chart to Opaque or Transparent? -
Using negative margins to zoom in on map
FusionCharts Support replied to FusionCharts Support's topic in FusionMaps XT
Hi, For a map showing 300x400 with 25% left off from right and 20% off from left, 10% off from top and 5% off from bottom please try: mapRightMargin='136' mapLeftMargin='109' mapTopMargin='24' mapBottomMargin='47' Calculation: the zoomed view width inside 300 pixel window is 100-(25+20) = 55%. The virtual map 100% width is 545. If 55% = 300, 25% = 136 , 20% = 109 the zoomed view height inside 400 pixel window is 100-(10+5) = 85%. The virtual map 100% height is 470. If 85% = 400, 10% = 47 , 5% = 24 -
Hi all, Please find the attched source for FusionMaps drilldown demo. You would need to add 1. all USA State map SWF files and US map SWF file in /Maps folder. 2. Column3D.swf and Pie3D.swf in /FusionCharts folder. FusionMapsJSDemo.zip
-
When dragging a node the title changes to #
FusionCharts Support replied to FusionCharts Support's topic in Using PowerCharts XT
Hi, This is one of the Bugs in IE that has no fix, yet. Please read: http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/thread/c91e3dc4-ef05-47f9-b799-db149e3ddc80 -
showAboutMenuItem, aboutMenuItemLabel have no effect
FusionCharts Support replied to a topic in XML Issue
Hi, Could you please check whether you are using v3.1.0 or above ? You can get this by setting Debug Mode of the chart on. -
reg:StackedColumn2D.swf populating X Axis
FusionCharts Support replied to maligangadhar's topic in General usage
Hi, Trendlines are not attached to legends. Only dataset series name can go in the legend list. -
Modify XML behind Gantt with FileMaker
FusionCharts Support replied to rpdwyer's topic in FusionWidgets XT
Not as of now. -
Trouble with named ID of the dial
FusionCharts Support replied to shad0ws's topic in FusionWidgets XT
Hi, It seems to work fine in our labs. -
Resizing issue in Fusion chart
FusionCharts Support replied to ajaykr.choudhary's topic in General usage
Hi, As of now FusionCharts does not support dynamic resizing. I am not sure which scale mode you are using and whether you are re rendering the chart after every resize. Could you please try once setting the scale mode to "ExactFit" when rendering the chart and try resizing again? -
How can I change the chart type with JS/Ajax?
FusionCharts Support replied to FusionCharts Support's topic in Javascript Problems
Hi, The download contains this folder structure as I rechecked again downloading and extracting. This is an exclusive sample which is not included in the Documentation or Pack. BTW, even with out classic/library AJAX code of JavaScript you can make a chart update using chart's own native AJAX feature. This is done using setDataURL() method of the chart. This is just a code change from your side, the AJAX callback function that the sample code provided : if(!getChartFromId("AjaxFC")){ var fc=new FusionCharts("../../FusionCharts/Column2D.swf","AjaxFC","600","250","0","1"); fc.setDataXML(strXML); fc.render("AjaxChart"); } Your code should just change Column2D.swf to what even your required chart is. -
Hi, As per your code you have specified exportHandler='includes/ExportHandlers'. Could you please modify this to exportHandler='includes/ExportHandlers/FCExporter.php' and try once?
-
Dynamic Subcaptions and labels failing to display
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and PHP
Hi, Could you please cross-check whether the XML that is getting generated contains the desired text as value in those attributes? So, Instead of passing the XML (URL of the file) to the chart could you please try once loading that in the browser (firefox) and see (and share with us) what values are exactly coming? -
Hi Anila, It is better if you use a web server, local or live to get instant drill down. Please let us know with screen shot what you exactly see
-
Can USA map transistion smoothly to a state map?
FusionCharts Support replied to FusionCharts Support's topic in Using FusionMaps XT
Hi Anila, Please find attached in this post: http://www.fusioncharts.com/forum/Topic22030-11-1.aspx -
Hi Anila, I am a bit consufed about how you "close the frame". Generally the frames remained defined in the page itself. Let me send you a sample which might help you. It uses world map - click on the Europe entity and Europe map opens in a frame. Please use the map swf files that you have to see the sample. frameSampleDrillToMap.zip
-
Hi Anila, Merry Christmas!:w00t: Hope you are doing fine. It seems that your application does not have a frame with name detailsFrame. That might be the reason why it is opening in a new window. Please check. You need to have the frame (<frame> or <iframe> ) existing to open the desired file in that frame.
-
100% height not rendering in Internet Explorer and Mozilla
FusionCharts Support replied to philiptiju's topic in Javascript Problems
Hi, % height on the first hand dependents on the parent HTML element which is the DIV - columnChart. Hence, please try once setting the proper height of that DIV to get the changes universally.