-
Content count
2,097 -
Joined
-
Last visited
-
Days Won
12
Everything posted by FusionCharts Support
-
ASP.NET 2.0 FusionMaps Basic Samples C# & VB.NET
FusionCharts Support replied to FusionCharts Support's topic in Using FusionMaps XT
hi, Let me here update the C# and VB Very Basic Samples of FusionMaps. These will be added to our next release. We welcome suggesstions on these samples. Like earlier you need to add the map SWF and chart SWF files from your Downloaded pack. FusionMapsCS.zip FusionMapsVBNET.zip -
How to display dynamically multiple charts for multiple records
FusionCharts Support replied to faissey's topic in FusionCharts and ASP.NET
hi, You can go through our online Documentation on how to render chart using data from Database. http://www.fusionCharts.com/docs >> Guide For Web Developers >> USing With C# (ASP.NET) Section or http://www.fusioncharts.com/docs/Contents/CS_DB.html Do you want to display multiple charts at one instance or One at a time? -
hi, opps...can you just try using BR (in caps) instead of br and try again.
-
hi, you can embed multiple map in a single Flash movie. Please visit http://www.fusioncharts.com/maps/docs/Contents/Flash_Multiple.html for this. This is a basic exmaple to load a single map: http://www.fusioncharts.com/maps/docs/Contents/Flash_Overview.html You can create a similar Drill down demo as the JS Drill Down demo. For this you need to write ActionScript codes as needed.
-
hi, I am afraid this is not possible.
-
No Chart Display
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
make sure of the path for FusionCharts.js file. The application can not find it. Hence it tells that FusionCharts is undefined. -
hi, You need to use a special font style attribute for the tooltip object : The XML for the style for tooltip would be like this : Now in the tooltip values you need to put HTML <BR> to provide line breaks: say if you want to show : Total Accounts: 257 Total Sales: $1,500,450 <entity id='001' tooltext='Total Accounts: 257<br>Total Sales: $1,500,450' /> Note : <br> - this is the line break <BR> in XML encoded form. The above entity XML will work for dataURL method . If you are using dataXML mehtod to provide XML you need to use %26lt;br%26gt; instead of <br>
-
GRAPH DOESN'T APPEAR IN THE PAGE
FusionCharts Support replied to ethnocide's topic in FusionCharts and PHP
Hi, You need to provide an id to the chart: echo renderChart("../FusionCharts/FCF_Line.swf", "", $strXML, "ChartID1", 600, 300,false,false); Also did you include the FusionCharts.js file? <SCRIPT LANGUAGE="Javascript" SRC="../FusionCharts/FusionCharts.js"></SCRIPT> If not you can try using renderChartHTML once : echo renderChartHTML("../FusionCharts/FCF_Line.swf", "", $strXML, "ChartID1", 600, 300,false); -
Problem displaying in IE with FlashPlayer 9
FusionCharts Support replied to keithh0427's topic in Bug Reports
hi, I think you have proper Flash Player installed and its ok since you can see the charts from our web side. Now since you are having problem shoing your chart it seems that the path for FusionCharts.js is not properly set. Hence, the page can not render the chart and the default text that given in your page... which is unfortunately the flash player message...hardcoded in your HTML page. If all fails please send us the HTML code that you are using to load the chart. -
Databases and Fusion Maps
FusionCharts Support replied to selfemployed's topic in Using FusionMaps XT
hi, Depends on which platform and which server side technology you are using. Level ServerSideTechnology DatabaseSupport Beginners ASP MSAccess ASP,ASP.NET MSAccess+SQL Server PHP,ROR,JSP MYSQL Advaced All Oracle lots more... lots more... -
hi, You are giving line breaks while creating the XML. Remove all line breaks and form a single string without line breaks. This is because the XML is finally parsed by JavaScript and it JavaScript wont recognize these line breaks and produce the error of unterminated string.
-
Databases and Fusion Maps
FusionCharts Support replied to selfemployed's topic in Using FusionMaps XT
moreover you can use any server side script and any database which is easier for you at the backend to work with FusionMaps. -
Databases and Fusion Maps
FusionCharts Support replied to selfemployed's topic in Using FusionMaps XT
hi, You can see the Online Documentation : http://www.fusioncharts.com/maps/docs >> Using With ASP or Using With PHP >> Plotting Data From Database Section for more on this. -
ASP.NET 2.0 FusionMaps Basic Samples C# & VB.NET
FusionCharts Support replied to FusionCharts Support's topic in Using FusionMaps XT
We will post these samples up here surely on next week -
hi, I am afraid, we do not have this chart in our suite as of now.
-
Sometime FusionChart can not render properly
FusionCharts Support replied to cj's topic in Bug Reports
Hi, Can you please send us the code that you are using. Also specify the technology (like ASP.NET, ASP.NET.ASPX etc.) that you are using. -
hi, I am afraid, as of now, we dont have dual Axis bar chart to offer.
-
"'ChartMain' is undefined" JavaScript error
FusionCharts Support replied to DrLeary's topic in Javascript Problems
hi, Make sure that you are using the latest FusionChart.js released on 22 Dec 2007 with FusionCharts v3.0.5 which has some IE related fixes, to solve the IE <FORM> issue. Your error might fall into that since you are using ASP.NET. Do you update your chart using setDataXML/setDataURL using JavaScript ? If not you may not use registerWithJS option. This option is needed when you want to, using JavaScript, feed data to or get data from (in case of PowerCharts and FusionGadgets) an already loaded chart. Can you please also tell me wheher you are using ASP.NET.AJAX? -
Y Axis Minimum value is being ignored (Free Charts)
FusionCharts Support replied to Bad Whippet's topic in General usage
hi, To hide the line you can use alpha='0' for that <set> e.g. <set value='25000' alpha='0' /> This might help. -
hi, I am afradi this is not possible as of now.
-
How to not display verticle numbers
FusionCharts Support replied to FusionCharts Support's topic in General usage
hi, If you are using vFREE charts you can use showLimits='0' showDivLineValue='0' -
How to not display verticle numbers
FusionCharts Support replied to FusionCharts Support's topic in General usage
Can you please tell me which version of chart you are using vFREE to v3? -
hi, I am afraid this is not as yet possible.
-
How to not display verticle numbers
FusionCharts Support replied to FusionCharts Support's topic in General usage
hi, I hope you wish to hide the Y axis values . This can be done using : showYAxisValues='0' -
hi, It might due to some chart rendering algoriths which i have requested our chart developement team to look at. Meanwhile, you can set a fixed radius for pie chart using pieRadius='170' .