ebraun

Members
  • Content count

    2
  • Joined

  • Last visited

About ebraun

  • Rank
    Forum Newbie

Profile Information

  • Gender
    Not Telling
  1. I am getting a Flash Error? This text will be replaced by the chart. If you do not see the chart, make sure that: You've Flash Player 8 (or above) installed for this browser. If not, you may install it for FREE from http://www.adobe.com/products/flashplayer The FusionCharts URL (Querystring) built by your FileMaker code is correct. If not, use the FusionCharts debugger to debug it. You've JavaScript enabled for your browser. This would work before on version2 the free version Attached is my HTML that loads it and below is the sentex sent to the url to display the chart. can some one please help me to get it working on XT http://maven.i-e-c.net/fc/Charts/FusionCharts.html?v=&sep=;&chart= [chartType=SPline2d;chartWidth=1100;chartHeight=648]&chartParams=[caption=Bookings Monthly;showValues=1;numberPrefix= $;palette=;bgColor=FFFFFF;bgAlpha=100;borderthickness=1;showBorder=1;borderColor=ffffff] &levels=Oct;Nov;Dec;Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep&data=[seriesName=FY 09] 1996;563;174;498;867;399;962;837;763;600;653;769&data=[seriesName=FY 10] 579;158;168;600;1154;791;599;462;286;1176;347;320&data=[seriesName=FY 11] 75.286;59.579;287.580;469;86;233;255.775;606.647;401.497;488;391.298;365.324&data=[seriesName=FY 12] 192;414.183;0;486.497.377;29.903;768.34981;832.554;608.935;594.22;498.574;88.90&data= [seriesName=Budget FY 12]363;363;363;363;363;363;363;363;363;363;363;363 fusioncharts.htm
  2. I have the authorization to purchase the new version however I want to see it working on the trial copy so that when I make the purchase it will be seemless, I need to have it work on all iOS devices so flash is not important, We currently have ver2. here is the .html that is uses to call the chart. Please advise the changes as we have updated the files in the folder as needed. <HTML> <HEAD> <script language="JavaScript" src="FusionCharts.js"></script> <script language="JavaScript" src="FCColors.js"></script> <script language="JavaScript" src="FusionChartsCreator.js"></script> </HEAD> <BODY style="margin:0px; overflow:hidden; padding:0px;border:none;" > <div id="chartdiv" align="left" style="border:none"> <p>This text will be replaced by the chart.</p> <p>If you do not see the chart, make sure that: <UL> <LI>You've Flash Player 8 (or above) installed for this browser. If not, you may install it for FREE from <a href='http://www.adobe.com/products/flashplayer/'>http://www.adobe.com/products/flashplayer</a> <LI>The FusionCharts URL (Querystring) built by your FileMaker code is correct. If not, use the FusionCharts debugger to debug it. <LI>You've JavaScript enabled for your browser. </UL> </p> </div> <script type="text/javascript" > var rawData = unescape(document.location.search); /* This variable would accept any custom XML data which will be appended just before end of </chart> element. This would specifically be useful when user wants to create a global STYLE for all their charts in the solution. That ways, he can just define it here and all charts take it from here. */ var customXML = ""; if (rawData!="") { //detects if the application sunning on FileMaker for mac var isMac=navigator.userAgent.search(/MSIE/i)<0; //Detects whether the user wishes to print the charts var toPrint=rawData.match(/toPrint=[t1]/i); if(toPrint) toPrint=toPrint[0].replace(/toPrint=/i,"").search(/^[tT1]/)>=0; var FCC=new FusionChartsCreator(rawData); //Set scale mode to ShowAll if the platform is mac //and toPrint is true //Otherwize the scale mode is set to noScale if(toPrint && isMac){ var chart = new FusionCharts("./"+FCC.getSWF()+FCC.getChartMSG() , "ChartId" , FCC.getWidth() , FCC.getHeight(), FCC.getDebugMode(), "0","","exactFit" ); }else{ var chart = new FusionCharts("./"+FCC.getSWF()+FCC.getChartMSG() , "ChartId" , FCC.getWidth() , FCC.getHeight(), FCC.getDebugMode(), "0" ); } //We pass customXML to getXML function only – and not to FusionChartsCreator constructor. chart.setDataXML(FCC.getXML(customXML)); chart.render("chartdiv"); }   </script> </body> </html> Let me know if there is more info needed Thanks Eric Braun