FusionCharts Support

Members
  • Content count

    2,097
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by FusionCharts Support

  1. setDataXML is not doing anything

    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.
  2. Display time series data as movie

    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.
  3. question marks in link attribute not showing up

    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 >
  4. Background Image

    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
  5. provide DataURL with a php variable

    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.
  6. Problem in Using JavaScript functions as links

    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');"/]
  7. Works in FF but IE hates me

    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.
  8. avoid animations

    just set animation='0'.
  9. Chart Problem

    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 ...
  10. Number representation

    cheers!!
  11. Number representation

    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
  12. Number representation

    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.
  13. help!!!!

    hi, please refer to the recent post up here.. http://www.fusioncharts.com/forum/Topic1930-28-1.aspx
  14. help

    hi, please give the chart width and height values as string.... Call renderChart("../nexweb/FusionCharts/Pie3D.swf", "", strXML, "Sales", "500", "300", false, false)
  15. Show percentages in Pie/Doughnut charts

    please use ... showPercentValues='1' showValues='1' .. to show values in percentage on the chart labels. Regards,
  16. yAxisMinValue and Column Width

    Try using various combinations of chartLeftMargin/chartTopMargin/chartRightMargin/chartBottomMargin. to reduce the actual plot area.
  17. BACKGROUND PROBLEMS!!!!!!

    add/set canvasBgAlpha="0" . I hope it will work.
  18. Can a label be made a link?

    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' />