mrmeyers99

Members
  • Content count

    9
  • Joined

  • Last visited

About mrmeyers99

  • Rank
    Forum Newbie
  1. IE7 setDataXML endless loop

    The problem was I was using the same name for the javascript variable and the id of the chart. Stupid me!
  2. getChartFromId not Working?

    I sent it in and they found that I was using the same id for the div where I was rendering it and the id for the chart, which was causing that problem.
  3. In Firefox, when I add the code chart.setTransparent(true) then the chart looks like this: If I don't have that line then it looks normal, like this: Is there something I can do to fix it in Firefox? It looks fine in IE and Chrome.
  4. getChartFromId not Working?

    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?
  5. getChartFromId not Working?

    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?
  6. IE7 setDataXML endless loop

    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?
  7. Background Image Not Showing

    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'
  8. Background Image Not Showing

    Why is my code not showing up? I'm using the [ code ] IFCode.
  9. Background Image Not Showing

    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?