-
Content count
2,097 -
Joined
-
Last visited
-
Days Won
12
Everything posted by FusionCharts Support
-
Hi, Could you please use %26 for &, %26apos; for single quote (') , %26quot; for double quote (").
-
JavaScript functions as links
FusionCharts Support replied to darshan's topic in Using FusionMaps XT
Hi, Could you please use this (The earlier post had some mistakes due to posting in Firefox) link='myJS(%26apos;NA, 515%26apos;);' -
JavaScript functions as links
FusionCharts Support replied to darshan's topic in Using FusionMaps XT
Hi, Could you please use %36apos; instead of ' inside the link and ' instead of " in the link? -
Hi, Could you please try using Inverse Line Chart from PowerCharts pack?
-
Using javascript in an ASP page
FusionCharts Support replied to garnold's topic in FusionCharts and ASP
Hi, I am afraid, we dont have ASP-JavaScript embedding file. -
Hi, This is a simple VB6 Application using FusionCharts. To use this you would require Flash Player OCX ver. 8 or above installed in your machine. Through this we tried to demonstrate how FusionCharts can be use to show data directly from XML file or from XML as string or from database. FusionCharts_VB6_simpleExample.zip
-
How can we set y-axis values on multiseries Fusion Charts?
FusionCharts Support replied to Mahesh Agarwal's topic in XML Issue
Hi, Could you please use numDivLines attribute to set the number of y Axis Values to be shown. -
Hi, 1. I am afraid setDataURL is the only shortest way. 2. Styles can only be set in the XML itself which s generated by the jsf file. You need to have some mechanism, like passing a QueryString to the jsf (to tell it whether it will add style or not) or keeping a session Flag that will tell the JSF (whether it is running for the firsttime or not through which JSF will determine whether to add styles or not.
-
How is it possible to show the values in origin formated format?
FusionCharts Support replied to kilian's topic in General usage
Hi, Could you try not using the attributes decimals and forceDecimals at all in the XML? -
Hi Paul, Could you please tell us which method you are using? If you are using RenderChart() then you need to edit FusionCharts.js and add this.addParam("wmode","opaque"); or addParam("wmode","transparent"); [ both 'transparent' and 'opaque' will work] near lines where this.addParam occurs. If you are using RenderChartHTML() you need to change the vb code as you have rightly shown in your post, recompile it to FusionCharts.dll and replace the old FusionCharts.dll in the BIN folder.
-
Click to activate and use this control
FusionCharts Support replied to Jschluchter's topic in FusionCharts and ASP.NET
Hi, Could you please try using RenderChart() method when isPostBack==false and RenderChartHTML() method when isPostBack==true? Please note that when you use RenderChart() method you need to include FusionCharts.js in your application. -
ASP.NET.AJAX UpdatePanel Sample #1
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
Hi, The links seems to be working fine. -
Hi, I am afraid, you can not do this as of now.
-
Hi, Could you please try setting the path of the SWF relative to the wrapper HTML/application file?
-
Hi, We would post here a simple VB6 sample shortly.
-
Hi, Yes this is very much possible. Could you please set the proper path to the SWGF file which should be relative to the HTML wrapper file/application file and not the SWF or XML file.
-
World Map Target Countries (x n y coordinates)
FusionCharts Support replied to Kisor's topic in Using FusionMaps XT
Hi, We have a new World Map (will have public release soon) having all countries as entities. However, if you want to show the hits as markers you would need (as you have pointed out rightly) to create markers or use the existing markers of capital cities created by us. We also have an XML ready with markers for major cities for the map World8.swf (not yet release) Moreover, for the new world map we have defined all capital markers. >>"One more question is whether this map is scalable. Meaning if i resize the map, do i need to change my x and y coordinates? " Yes the map is scalable and you need not change the x or y when the map is resized. -
Help! Charts will not display in asp.net
FusionCharts Support replied to ywinston's topic in FusionCharts and ASP.NET
Hi, Could you please send us a snap of what you are getting as output or error in the page when you try to run the application? Note that these samples are for ASP.NET 2.0 and wont work in ASP.NET 1.1 NOTE : Your code shows some probable errors : 1. < head runat="server">< script type="text/javascript" language="javascript" src="../FusionCharts.js"></script>< script type="text/javascript"></ script></ head>< body> <form id="advform" name="advdash1" method="post" runat="server"> <div id="page"> <div id="header"> <div id="logo"> </div> </div> <div id="maincontent"> <b>TCU Fund Raising -- Key Performance Indicators</b> <div id="advdash" align="left"><% =CreateChart()%> </div> </div> </div> </form> </body> </html> 2. Are you using the code for the Function in code behind page or in the same page as shown in the first post? If latter could you please use it inside <script runat="server></script> 3. String Concatination is done using & in VB strChart = strChart & "'" 'Create the chart - Column 3D Chart with data from strXML variable using dataXML method Return FusionCharts.RenderChartHTML("../FCF_Column3D.swf", "", strXML, "myNext", "600", "300", False) 'Create the chart - Pie 3D Chart with data from strXML Return FusionCharts.RenderChart("../AngularGauge.swf", "", strChart, "advdash", "200", "220", False, False)These, except the use of "+ +", though wont much harm the output. -
FusionCharts Update Panel example #2 ASP.NET.AJAX
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
Hi, Could you please check that you have also changed the XML for the charts? for FREE the XML is a bit different : <chart> would be <graph> 'label' would be 'name' Could you please check the FREE Documentation for more on this : http://www.fusioncharts.com/free/docs -
Hi, Yes it is possible to use FusionCharts in VB 6. Its better that you might use Flash Player OCX. Incedentally we are on an R&D on the same kind of implementaion on VB and will have a release soon.
-
FusionCharts Update Panel example #2 ASP.NET.AJAX
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
Hi, Yes it Definitely works. -
Hi, You need to render the chart atleast once in the client side before firing saveImage event. This you can trap using FC_Rendered() function in javascript. Put saveImage() in this function.
-
Hi, Could you please check whether you have set registerWithJS =1
-
Hi, I fear the aspx file in not in proper place. Could you please check the XML that has the imageSaveURL has the same path to the aspx file.
-
hi, Could you just try setting formatNumber='1'. I find that you are using formatNumber='0' which is basically disallowing all numberFormatting on the values like decimals etc.