-
Content count
2,097 -
Joined
-
Last visited
-
Days Won
12
Everything posted by FusionCharts Support
-
How to set indication(legend) in fusion maps and different styles of tooltip in fusion maps
FusionCharts Support replied to FusionCharts Support's topic in Using FusionMaps XT
hi, I am afraid you can not have patterns as Legend and mulitple colored tooltips as of now. -
count columns of data in access database
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP
hi, Almost all charts and gedgets and maps can perform Drilldown. You ca ngo through our online Demos from where you can definitely get an idea. Out Blueprint demo almost match your specifications. http://www.fusioncharts.com/Demos/Blueprint/ http://www.fusioncharts.com/gadgets/Demos/Blueprint/ http://www.fusioncharts.com/maps/Demos/AJAX/Index.html You can download them from our download pages. -
Difficulty changing data values
FusionCharts Support replied to madbrit's topic in Using FusionMaps XT
hi, Can you please tell me what method you are using to render the chart? Using JavaScript or ASP.NET class? For any of these you can stop caching the XML of the chart. If you are using JavaScript ... mapObj.setDataURL("yourXML.xml?noCahce="+new Date().toGMTString()); If it does not work please provide us the code where your are enbedding the map. We can workout something. -
Disable Right-Click Print on FusionCharts v3
FusionCharts Support replied to vancepublishing's topic in Miscellaneous
hi, You can disable rigth click menu using showFCMenuItem='0' -
hi, Create a chart with debug mode on. In the debug window you can get the detailed version of the chart.
-
hi, I am afraid you can not do this as of now.Using Enterprize License you can edit the source to fit your needs.
-
Plz send code below fusion map
FusionCharts Support replied to FusionCharts Support's topic in Using FusionMaps XT
hi, Thanks for your appreciation. You can save the whole Flight Selector Demo (using save complete page) to get the full source code since all is done is JavaScript. I am afraid you can not use patters as legend. As of now it only shows color ranges. -
Difficulty changing data values
FusionCharts Support replied to madbrit's topic in Using FusionMaps XT
hi, Your XML is getting cached in the browser, hence showing earlier data. Can you please tell me if you are using JavaScript or ASP, PHP, ASP.NET or another other technology to embed the map? You need to add appropriate cache killer while assinging the XML file. Or you can put up a <meta> tag to stop caching the whole page. <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"> <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"> -
hi, Please have a look at our CandleStick chart and its samples from http://www.fusioncharts.com/PowerCharts.asp#candle, which might solve some of your issues.
-
Multi Series not available in free version ?
FusionCharts Support replied to Dataconsult's topic in General usage
FusionCharts vFREE has multi-series charts. It might be that you are not using the SWF needed for Multi series charts. You might be using single series chart swf. Please visit http://www.fusioncharts.com/free/docs/Contents/ChartList.html for more information on the chart swf names against each type. -
"Object doesn't support this property or method" while trying to use setDataUrl in IE6
FusionCharts Support replied to Centyz's topic in Bug Reports
hi , This code works well in our Lab's IE 6. But we would recommend to use the cache control in meta tag : < META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE" > < META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE" > -
Hi, Put the chart inside a table with td set to your desired alignment. <table border="0"><tr><td align="left"> <asp:label.... /> </td></tr></table>
-
Hi, Put the chart inside a table with td set to your desired alignment. ></pre> <table border="0"> </t
-
Reg:how to include swf charts into my .net application
FusionCharts Support replied to FusionCharts Support's topic in General usage
hi, You can add FusionCharts using Flash Player OCX control in .net Desktop Application. To provide data, you need to build XML for the chart and stream the XML to the chary. If you intend to retrieve data from SQL server you need to use your regular code to do this and build the XML using your .net code. FusionCharts only accepts XMl data. You can try out these simplest implementations from these links: http://www.fusioncharts.com/forum/Topic3221-28-1.aspx http://www.fusioncharts.com/forum/FindPost2798.aspx -
hi, I am afraid v3 pack has no PHP API as of now. But you can always use the existing vFREE API with v3 chrts with minor changes like changing the chart swf names.
-
How to use fusion charts v3 for .Net 2003?
FusionCharts Support replied to chandusarvesh's topic in Suggestions & Requests
Hi, The DLL is for ASP.NET 2.0 or above. Here i post the ASP.NET C# codes with DLL for ASP.NET 1.1 VS2003 version which we have stopped distributing. Try this. Note that The code given here will vary from the existing code and documentation (ASP.NET 2.0 ). C#.zip -
GRAPH DOESN'T APPEAR IN THE PAGE
FusionCharts Support replied to ethnocide's topic in FusionCharts and PHP
hi, 1. RenderChartHTML is a basic function which adds a chart to a page using HTHML embedding method. This means the method will generate an HTML string that will contain help loading the chart. This is dones using <object>/<embed> elements. The returned strin might have similar structure.: (Injecting direct HTML to a page) <object ......> <param name='movie' value='chart.swf'> <param name='...' value='...'> ... <embed src='chart.swf' .....></object> ** RenderChartHTML eariler did not supprort RegisterWithJS fucntionality of the charts. The new version of the ASP.NET 20. method found in InfoSoftGLobal.FusionCharts class has made this available. 2.Whereas RenderChart uses JavaScript embedding method. (This method is used to override the IE - "Click Here to Activate.." ). It creates a DIV and a some lines of JavaScript codes that creats a FusionCharts JavaScript Object.Using this object the charts is rendered inside the DIV. So this is path HTML and path JavaSCript injecting. The JavaScript will handle the injecting of the <object>/<embed> tages for the charts. This method will render string close to this : <div id="name_div" >THIS TEXT WILL BE REPLACED BY THE CHART</div> <script type="text/javascipt" lanuage="javascript"> var chrt_name=new FusionChrts("chart.SWG","name_id","......); if( strURL==true){ chrt_name.setDataURL(URL); }else{ chrt_name.setDataXML(strXML); } chrt_name.render("name_div"); </script> **** You need to add/include FusionCharts.js file (to <head> ) in HTML page.Otherwise the chart will not render. [ Note that when you add a inject a javascript using another javascript, the injected javascript will not be executed. Hence we recommend not to use RenderChart in AJAX callback, since AJAX is JavaScript and this javascript wont execute the javascript injected by RenderChart() (Untill and unless you write code to extract out all JavaSctipt code and eval() them). -
How to display dynamically multiple charts for multiple records
FusionCharts Support replied to faissey's topic in FusionCharts and ASP.NET
hi, may be you can write nomal ASP.NET codes to retrive data from web services and build XML (may be you ca put all the code in anothe function) and set the XML to the charts. -
a few possible IE and Save as Image bugs
FusionCharts Support replied to orsoletta's topic in Bug Reports
hi, Bug 1 : this is a bug we are currently working on. Bug 2 : This is specific to a Flash Player version 9.0.16.0 (so far we tested) and we are doing R&D for a fix in FusionCharts.js itself. Bug 3. Please download the latest charts 3.0.6 where this issue is resolved. -
"'ChartMain' is undefined" JavaScript error
FusionCharts Support replied to DrLeary's topic in Javascript Problems
hi, You can download the latest version of FusionCharts.js that comes with our release 3.0.5+. At the top of the file (if you open it in an editor) version information is given. The latest version is 1.2 (1st November, 2007),modified 21 Dec 2007. You can have it downloaded from www.fusioncharts.com/download.asp with the Evaluation version. -
Out of memory error multiple charts
FusionCharts Support replied to Pallav's topic in Javascript Problems
hi, this is an error with some versions of Flash Player ( 9.0.16). We are trying for some fix. -
hi, what you can is create a <asp:literal id="xyz" runat="server"/> control in your page. Also create a button to run a code from the code behind. In that code instead of response.write you can use: xyz.text=InfoSoftGlobal.FusionCharts.RenderChart(....);
-
hi, The first concept/logic is what we also used in one of the simplest AJAX sample for FusionCharts and posted up here :http://www.fusioncharts.com/forum/FindPost2797.aspx You can easily use this in your FusionMaps code too. You can reinitialize your map at client side using the the same JS functions that you use for first initialization.
-
charts in Visual studio 2003
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
hi, You can always use FusionCharts in vs2003 though we have recently moved our examples and code to support ASP.NET 2.0. If you can tell us which language (VB/C#) you are using we can post here the vs2003 supproted sample code, dll and documentation. -
How to display dynamically multiple charts for multiple records
FusionCharts Support replied to faissey's topic in FusionCharts and ASP.NET
hi, You can create multiple charts in any way you wish, using a function or using loop. Just need to make sure that you must give unique chart id to each chart.