-
Content count
2,097 -
Joined
-
Last visited
-
Days Won
12
Everything posted by FusionCharts Support
-
hi, after going through your code what i find are : 1. You have some syntax error in function calculateInterest().Disable the line starting with "interestXML =" 2. Do not use "chartObj.setDataXML(generateXML());" in FC_Rendered() function as it will never show the initial chart. use this line only in UpdateChart() function. 3. use have used HTML tag button [bUTTON name=submit onclick=updateChart('chart1Id')] You must define the type type="button" so that the HTML will look like this : [bUTTON type=button" onclick="updateChart('chart1Id')] Do not make it submit because we are not submitting to any server script. Its client side java script. Things will work now.
-
Display time series data as movie
FusionCharts Support replied to FusionCharts Support's topic in Using FusionMaps XT
Yes this is fairly possible using FusionMaps. But since one entity (say 1 country) can hold only 1 value at a time, you need to feed the changing data to the entity from external interface ussing an external button (say from flash or javascript) setting a interval (say 1/4 or 1/2 a second) for each change. That would simulate the video effect that you require. -
question marks in link attribute not showing up
FusionCharts Support replied to grantmcnally's topic in Bug Reports
You have to URL encode the link's value : Use urlencode() PHP function to encode the link say, urlencode("regions/oceania.php?get=1") before setting this as link's value. The encoded link may look like this : regions/oceania.php%3Fget%3D1 Finally the XML element will be like this : [entity id='AU' link='regions/oceania.php%3Fget%3D1' displayValue='OC' toolText='Oceania' value='18' /] *NOTE : please read [ as < and ] as > -
yes it is possible to use any jpeg file to set as the background of a chart. For more information please refer to FusionCharts's online documentation. http://fusionCharts.com/Docs Here is the link to the specific page :http://fusioncharts.com/docs/Contents/AttDesc/Background.html
-
provide DataURL with a php variable
FusionCharts Support replied to halizia's topic in FusionCharts and PHP
You can also use FusionCharts.php library that has a renderChart function that help you easily render a chart in PHP without getting into the javascript part. -
Problem in Using JavaScript functions as links
FusionCharts Support replied to ashish_kushwaha's topic in Javascript Problems
please use "Ja vaScript" prefix in the link. Hence your link definition is to modify this way ... [set label='..' value='...' link="J avaScript:myJS('text,vlaue');"/] -
Please use Quotes (") in object tag for the values of id , codeBase,classid etc. [ Object id="Bar2D" codeBase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" height="335" width="800" classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000" ] Check the differences. Ii will work in IE. Note : we use [ & ] insead of < & > signs while posting a code.
-
just set animation='0'.
-
hi, did u try adding adjustDiv='0' to <chart> element. The chart is supposed to auto calculate divisional values and in this case failing to do so... this option sets this auto adjustment of di lines off... hence u will see divisional lines in your chart now. Please see (http://www.FusionCharts.com/docs) >>chart XML Reference>SingleSeries>Column2d>Functional Properties - Online Documentation for more details on this ...
-
Number representation
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
cheers!! -
Number representation
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
hi, please also refer to FusionCharts online documentaion http://fusioncharts.com/docs/Contents/Number_Scaling.html for more on this & other number formatting features. Thanks -
Number representation
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
hi, the chart uses the automatic number scaling feature that reduces any big number to small sized one... so 1000 beomes 1K = 1 Kilo, 1,000,000 will be 1M = 1 million and so on. If you want to show the number with out this format please set formatNumberScale='0' parameter in <chart> element. -
hi, please refer to the recent post up here.. http://www.fusioncharts.com/forum/Topic1930-28-1.aspx
-
hi, please give the chart width and height values as string.... Call renderChart("../nexweb/FusionCharts/Pie3D.swf", "", strXML, "Sales", "500", "300", false, false)
-
Show percentages in Pie/Doughnut charts
FusionCharts Support replied to FusionCharts Support's topic in General usage
please use ... showPercentValues='1' showValues='1' .. to show values in percentage on the chart labels. Regards, -
Try using various combinations of chartLeftMargin/chartTopMargin/chartRightMargin/chartBottomMargin. to reduce the actual plot area.
-
add/set canvasBgAlpha="0" . I hope it will work.
-
Any dataplot, be it a column, pie slice, bar or anchor of a chart, can be a link. You have to add a link attribute for that dataplot in the <set> element. e.g. <set value='12' link='PageToOpen.html' />