mrmeyers99

Members
  • Content count

    9
  • Joined

  • Last visited

Posts posted by mrmeyers99


  1. Also in IE a message comes up that says Object doesn't support that property or method, and script debugger shows this code:

     

    
    try { document.getElementById("total_costs_employee").SetReturnValue(__flash__toXML(FC_Rendered("total_costs_employee")) ); } catch (e) { document.getElementById("total_costs_employee").SetReturnValue(""); }
    
    

     

    I didn't write that code. I don't know where it comes from, except that total_costs_emplyee is the name of the chart I'm trying to render. What would cause that error?


  2. I've got this problem too. I'm NOT using FusionCharts Free. The name of the SWF is StackedColumn2D. For me it says Object doesn't support this function or method on the second line of this segment:

     

    
    var chartObj = infosoftglobal.FusionChartsUtil.getChartObject(this.getAttribute('id'));
    
    chartObj.setDataXML(strDataXML);
    
    

     

     

     

    Note that this code is not from my code, it's from the FusionCharts javascript class. It only happens in IE. Firefox/Chrome work fine. What do I do?


  3. I am trying to use setDataXML with a chart, and in Chrome/Firefox it works fine, but in IE it goes into an endless loop. It happens in this section:

     

    
    var chartObj = infosoftglobal.FusionChartsUtil.getChartObject(this.getAttribute('id'));
    
    chartObj.setDataXML(strDataXML);
    
    

     

     

     

    I changed it to this:

     

    
    var chartObj = infosoftglobal.FusionChartsUtil.getChartObject(this.getAttribute('id'));
    
    strDataXML += "*";
    
    alert(strDataXML);
    
    chartObj.setDataXML(strDataXML);
    
    

     

    and it just keeps calling itself. Is it supposed to be calling something else?


  4. Here's what I have for the parameters to the chart tag. I can't get all the code to show up.

     

     

     

    bgSWF='http://localhost/salus/life/images/main-text-pop.jpg' showBorder='0' bgColor='ffffff' canvasBgAlpha='0' outCnvBaseFont='Arial' baseFont='Arial' baseFontSize='12' lineThickness='4' anchorRadius='4' showValues='0' caption='Weight History' rotateNames='1' xAxisName='Campaign' yAxisName='Pounds' decimalPrecision='0' formatNumberScale='1' lineColor='555555' yAxisMaxValue='210.396' yAxisMinValue='169.984' adjustDiv='0'


  5. I have this code for my chart:

     

    
    
    
    
    
    

     

     

     

    I know that the URL is valid, because when I copy and paste it into my browser it shows the image I want for the background, but it doesn't show up in the chart. I've compared my code to other people's in the forums, and I think I'm doing everything right. Any ideas?