-
Content count
2,097 -
Joined
-
Last visited
-
Days Won
12
Everything posted by FusionCharts Support
-
fusioncharts periodically renders incorrectly - all scruched up???
FusionCharts Support replied to callagga's topic in General usage
Hi, Could you please try the solution once? -
How to Add both Bar chart and Grid chart in one Flash control?
FusionCharts Support replied to avinash's topic in Suggestions & Requests
I am afraid, we do not have multi-series grid chart, as of now. -
fusioncharts periodically renders incorrectly - all scruched up???
FusionCharts Support replied to callagga's topic in General usage
Hi, This happens in IE when you provide dimension in %. To overcome this you would need to render the chart(s) after the page gets loaded. Please put all chart rendering code in window.onload event. e.g. <s c ript type='text/java script' language='java script'> window.onload=function(){ var categoriesChart = new FusionCharts("/flash/MSStackedColumn2DLineDY.swf", "categoriesChartId", "100%", "600", "0", "0", "FFFFFF", "noScale"); categoriesChart.setDataURL("...<%=url_str%>"); categoriesChart.render("...<%=div_id%>"); t p i r c s> } </script> -
help selecting a period of time
FusionCharts Support replied to bender's topic in FusionCharts and PHP
Hi, Could you please attache here the XML that is getting rendered? You can get the XML by viewing the source of the HTML generated. -
How to Add both Bar chart and Grid chart in one Flash control?
FusionCharts Support replied to avinash's topic in Suggestions & Requests
Hi, I am afraid, the chart and the grid, being tow separate components, you need to render them in two containers. -
Hi, Could you please try using these attributes : numDivLines='9' adjustDiv='0' [9= number of items on yAxis(11 -> i.e. 0, .5, 1, 1.5...5) - limits (2)]
-
How to control/set a max value in Radar.swf?
FusionCharts Support replied to Lee08's topic in General usage
Hi, Please use yAxisMaxValue to set upper limit or max value of the chart. You can not individually set the upper limit of individual dataset. Moreover, in case any value in the chart exceeds the yAxisMaxValue, this setting would be igonred. -
FusionCharts Update Panel example #2 ASP.NET.AJAX
FusionCharts Support posted a topic in FusionCharts and ASP.NET
Hi all, here goes another FusionChats ASP.NET.AJAX sample using Update Panel. FusionCharts.ASP.NET.AJAX2.zip -
Angular Gauges don't work if rendered first with ' in XML
FusionCharts Support replied to FusionCharts Support's topic in Bug Reports
Hi, Initially FusionCharts JS Class passes the XML (as dataXML) and other settings to the angular gauge or any other widget or chart as a simple querystring. Since & acts as a separator for querystring variables the presence of & in dataXML would break it. While updating the already rendered chart, the XML is passed as a string to the chart directly thorugh an exposed function of the chart. Hence, that wont break. What you can do is modify FusionCharts.js to suit your need: -
Forcing SYAxis to follow PYAxis and YAxis max smaller than largest chart values
FusionCharts Support replied to dao_as's topic in General usage
Hi, 1. I am afraid, you can not set PYAxisMinValue in stacked charts. 2. If any value in a chart exceed the upper limit set by PYAxisMaxValue or SYAxisMaxValue or yAxisMaxValue, these settings would be igonored and the chart would calculate a new limit inorder display the values. I am afraid, as of now you can not make the dataplots over flow the limits. -
Legend not showing all datasets in Scatter XY plot
FusionCharts Support replied to fisherk's topic in Bug Reports
Hi, The XML that you sent shows 15 legends. Could you please check once again? -
How to download the Java Class for FCF FusionCharts Free v2
FusionCharts Support replied to shanekwok's topic in FusionCharts and JSP
HI, Could you please download the Eval pack of FusionCharts v3 from http://wwww.fusioncharts.com/download.asp and get java class from CODE >> JSP folder? The wrapper would work seamlessly for FREE charts. -
HI, I am afraid, this is not possible as of now.
-
Need Stack Bar 3D with a line using same axis
FusionCharts Support replied to cricri's topic in General usage
Hi, Could you please try making sYaxisMinvalue='0', sYaxisMaxValue=pYaxisMaxvalue? Please note that in stacked chart there should be no negetive number to stack. -
Double Markers at the Same X & Y Coordinates
FusionCharts Support replied to Mucha's topic in Using FusionMaps XT
Hi, Yes you can always do it. Make sure to apply the smaller marker after you have applied the bigger one. -
can we have opposite of drill down graphs?
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and PHP
Hi, This is not possible as of now. -
Calling Image saving Mechanism on button click
FusionCharts Support replied to sachin257's topic in FusionCharts and JSP
Hi, In case you are not using JavaScript embedding method, please add "?registerWithJS=1" after the chart SWF file you specify. e.g. "Column3D.swf?registerWithJS=1" This would allow the code to access the saveAsImage() function of the chart. -
Removing the swf border
FusionCharts Support replied to FusionCharts Support's topic in Using FusionMaps XT
sorry, Its showCanvasBorder='0' -
Removing the swf border
FusionCharts Support replied to FusionCharts Support's topic in Using FusionMaps XT
Hi, Please use showConvasBorder='0' -
showLables on the set statement don't work
FusionCharts Support replied to samkwitty's topic in Bug Reports
Hi, Could you please let us know which chart SWF you are using? If you are using Bar2D.swf (single-series) then the permitted attributes for hiding and showing labels are :(showLabels and showLabel) <chart showLabels='1'..> <set label='foo' showLabel='0'/> ... </chart> In this XML structure there should be no <Dataset> In case you are using MSBar2D.swf : (multi-series) <chart showLabels='1'..> <categories> <category label='foo' showLabel='0'/> ... </chart> Labels are set through <category> elemements. Hence, must be given in <category> element. <dataset> or <set> inside <dataset> would ignore these attributes since these have nothing to do with labels in Multi-series XML/Chart model. -
Can I do ajax call & display text from a LINK in a chart???
FusionCharts Support replied to callagga's topic in General usage
Hi, A.You can use the click event or link property of data elements to call a javaScript. You need to write the JavaScript code to do all the AJAX job and show the popup div. B. I am afraid, rollover event is not exposed, as of now. c. You can update the whole chart using setDataXML or setDataURL which is an AJAX like feature. -
Map size increase after post back
FusionCharts Support replied to suan.ngaihte's topic in Bug Reports
Hi, Could you please try setDataURL() where you need to just pass the URL of the XML generator script? This way you can skip all post back code that you might be using and re-rendering of the map. Rather, you just need to specify the url and let map handle the post back of XML data and re-draw map. -
Secondary Y axis, Decimals. How to remove?
FusionCharts Support replied to AlexOlivier's topic in FusionCharts and ASP.NET
Hi, Please use formatNumber='1' or do not use formatNumber='0'. This setting removes all decimal and other number formatting. -
Russia's mouseover not fully working in NewWorld map
FusionCharts Support replied to jrheard's topic in Bug Reports
Hi, Thanks for your mail. Could you please let us know which map swf you re using to set 'RU' as entity id for Russia? Please also let us know the minor version of the map version that you are using. You can get it by setting debugMode on. -
Can't update chart with setDataXML method
FusionCharts Support replied to Hakan's topic in Javascript Problems
Hi, You would need to setup Flash Player global settings from http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html to let Flash Interact with JavaScript.