mariak02

Members
  • Content count

    5
  • Joined

  • Last visited

About mariak02

  • Rank
    Forum Newbie
  1. Problem with Internet Explorer

    Thanks, solved it out I had to put the code into function FC_Rendered(DOMId).
  2. Problem with Internet Explorer

    Thanks, this did help with the first JS error. But now i'm getting an error 'Object doesnt support this propary or method' on the feedData() function: var chartJS = getChartFromId("live_monitor_chart"); //We need to create a querstring format incremental update, containing //label in hh:mm:ss format //and a value (random). var currDate = new Date(); var label= currDate.getHours() + ":" + currDate.getMinutes() + ":" + currDate.getSeconds(); var value = 8830; //Build data string in format &label=...&value=... var strData = "&label=" + label + "&value=" + value; //Feed it to chart. chartJS.feedData(strData); The chart is outside of FORM element, registerWithJS flag is on, the chart is rendered and running behind apache. Any ideas ?
  3. Problem with Internet Explorer

    This is my code: <div id="live_monitor_chart" align="center" > </div> <SCRIPT src="FusionGadgets/JSClass/FusionCharts.js"></SCRIPT> <script type="text/javascript"> //Instantiate the Chart var chart = new FusionCharts("FusionGadgets/Charts/RealTimeLine.swf", "live_monitor_chart", "600", "350", "0", "1"); chart.setDataURL(escape("live_monitor_chart.xml?currTime=" + getTimeForURL())); //Finally, render the chart. chart.render("live_monitor_chart"); But i still get the error...
  4. Hi, is there a way to change the direction of x-axis ? Right now the chart line starts from right to left, so the chart line moves toward the Y-axis. Any way to put the Y-axis on the right of the chart or change the direction ?
  5. Hi, when setting refreshInterval='5', the first time chart refreshes is after 5 sec. Is there an option to make the first refresh immediately, and then wait for refreshInterval sec ? I tried to set refreshInterval='0' and then update the XML, but with '0' the chart remained empty...