Arindam

Members
  • Content count

    730
  • Joined

  • Last visited

Everything posted by Arindam

  1. Hi Everybody, We tried implementing FusionMaps using SWFObject 2.0. Here is a small sample attached. SWFObject_Test.zip
  2. Hi, link='sales.aspx?viewid=1&mnth=11' link='sales.aspx?viewid=1%26mnth=11' Could you please use url encoded link? & = & or & = %26
  3. JSON format

    Hi, Could you please try this for Free Version Of FusionCharts support? Please see the attachment. FCF_USingJSONData.zip
  4. Hi, Could you please try using &chartWidth=900&chartHeight=300 with in flashvars and also check swf path? e.g <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="900" height="300" id="Column3D" > <param name="movie" value="../FusionCharts/Column3D.swf" /> <param name="FlashVars" value="&dataXML=<chart><set label='1' value='1' /><set label='2' value='2' /></chart>&chartWidth=900&chartHeight=300" /> <param name="quality" value="high" /> <embed src="../FusionCharts/Column3D.swf" flashVars="&dataXML=<chart><set label='1' value='1' /><set label='2' value='2' /></chart>&chartWidth=900&chartHeight=300" quality="high" width="900" height="300" name="Line" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object>
  5. The Charts Hide my Alert Box

    Hi, Please follow this. using FusionCharts.php renderChart($chartSWF, $strURL, $strXML, $chartId, $chartWidth, $chartHeight, $debugMode=false, $registerWithJS=false, $setTransparent="") example: renderChart("column3d", "", $strXML, "abcd", "400", "300", false, false, true); Javascript example var chart_column2d1 = new FusionCharts("FusionCharts/Column2D.swf", "column2d1", "500", "300", "0", "0"); // set Transparent chart_column2d1.setTransparent("true"); //Provide entire XML data using dataXML method chart_column2d1.setDataXML(""); chart_column2d1.render("column2d1Div");
  6. The Charts Hide my Alert Box

    Hi, Could you please try using swf wmode transparent ?
  7. Labels on Bubble Charts

    Hi, Sorry, it is not possible.
  8. Grouping x-axis ? is it possible ???

    Hi, Sorry, it is not possible.
  9. Hi, Sorry, auto adjust label does not possible.
  10. Grouping x-axis ? is it possible ???

    Hi, This type of group not possible but you can try using Multi-series Chart. See this link. http://www.fusioncharts.com/docs/Contents/ChartSS/MSColumn2D.html
  11. Fusion chart free will not display on IE7

    Hi, Could you please remove [ style="display:none" ] from <div> and try again.
  12. Hi, you can use <chart> attribute - showValues='0' . e.g. <chart ... showValues='0' ... > also you can follow this. showPercentValues Boolean 0/1 Whether to show percentage values in labels of the chart? showPercentInToolTip Boolean 0/1 Whether to show percentage values in tool tip? showLabels Boolean 0/1 Whether to show labels on the chart? showValues Boolean 0/1 Whether to show values on the chart?
  13. Hi, you can use <chart> attribute - showPercentageValues='0' . e.g. <chart ..... showPercentageValues='0' .... > also see this forum post http://www.fusioncharts.com/forum/FindPost9420.aspx
  14. Hi, Sorry, It is not possible.
  15. How to show trendline in 2d Bar chart?

    Hi, Please follow this. Trend-lines Using the <trendLines> element (and children <line> elements), you can define trend lines on the chart. Trend lines are horizontal/vertical lines spanning the chart canvas which aid in interpretation of data with respect to some pre-determined value. For example, if you are plotting sales data of current year, you might want to add previous year's average monthly sales as trend indicator for ease of comparison. For each trend line on the chart, you need to define a <line> element under <trendLines> element as under: <trendLines><line startValue='895' color='FF0000' displayvalue='Average' /> </trendLines> You can control the cosmetic and functional properties of trend-lines using the following attributes: Attribute Name Type Range Description startValue Number Numeric Value The starting value for the trendline. Say, if you want to plot a slanted trendline from value 102 to 109, the startValue would be 102. endValue Number Numeric Value The ending y-axis value for the trendline. Say, if you want to plot a slanted trendline from value 102 to 109, the endValue would be 109. If you do not specify a value for endValue, it would automatically assume the same value as startValue. displayValue String If you want to display a string caption for the trend line by its side, you can use this attribute. Example: displayValue='Last Month High'. When you don't supply this attribute, it automatically takes the value of startValue. color String Hex Code Color of the trend line and its associated text. isTrendZone Boolean 0/1 Whether the trend would display a line, or a zone (filled colored rectangle). showOnTop Boolean 0/1 Whether the trend line/zone would be displayed over data plots or under them? thickness Number In Pixels If you've opted to show the trend as a line, this attribute lets you define the thickness of trend line. alpha Number 0-100 Alpha of the trend line. dashed Boolean 0/1 If you've opted to show the trend as a line, this attribute lets you define whether the trend line would appear as dashed? dashLen Number In Pixels If you've opted to show trend line as dash, this attribute lets you control the length of each dash. dashGap Number In Pixels If you've opted to show trend line as dash, this attribute lets you control the length of each dash gap.
  16. Hi, Please provide us your source code and folder structure via email.
  17. Hi, Again this is swf path problem. I think when you are using post back on button click that time you are loading your swf file from other location. Please use swf path relative to your page where chart will display.
  18. Flash Menu

    Hi, sorry, It is not possible.
  19. Hi, Could you please check absolute and relative path of FusionCharts swf and FusionCharts.js file and also check swf file uploaded correctly or not?
  20. having the yAxis values line up with Areas

    Hi, Sorry, it is not possible.
  21. Hi, FusionCharts v2.3 and FREE version of FusionCharts are same. To upgrade from FusionCharts Free to v3 charts, all you need to do is: Replace v2.3 or Free SWF with the new v3 SWF Files (present in Download Package > Charts folder). Either rename the v3 SWF files to use old v2.3 or Free SWF names or update your code to use new SWF names. Clear your browser cache. The above process doesn't automatically enables the chart to use ALL the new features introduced in v3. To do so, you'll have to add the appropriate v3 elements/attributes in your XML document.
  22. Problems with links

    Hi, Could you please URL encode this link "
  23. Hi, Could you please visit this link? http://www.fusioncharts.com/docs/Contents/Upgrading.html http://www.fusioncharts.com/docs/Contents/UpgradingEval.html
  24. How to add legends in power charts

    Hi, Could you please tell me what type of Power Charts are you using?
  25. Hi, Could you please check relative path of FusionCharts.js and FCF_MSLine.swf are correct and also check FCF_MSLine.swf is present with in swf collection? Revise this code <script language="javascript" src="FusionCharts/FusionCharts.js"> function draw() { } </script> Change it to <script language="javascript" src="FusionCharts/FusionCharts.js"></script> Also check relative path of FusionCharts.js Check swf file relative path return FusionCharts.RenderChart("../FusionCharts/FCF_MSLine.swf", "", strXML, "ChId1", "600", "350", false, false);