Hi,
We're currently evaluation the Fusionwidgets and although I have all the other charts working in real time no matter what I do I cannot get Bulb updating in realtime, it always sticks with the initial value, here is the config that I am using:
<html>
<head>
<title>FusionWidgets Chart Gallery - Real-Time Line Chart</title>
<script language="JavaScript" src="JSClass/FusionCharts.js"></script>
<link rel='stylesheet' href='Contents/Styles.css' />
</head>
<body bgcolor="#000000">
<table>
<tr>
<td align="center">
<div id="chartdiv13" align="center" class="text">
FusionWidgets needs Adobe Flash Player to run. If you're unable to see the chart here, it means that your browser does not seem to have the Flash Player Installed. You can downloaded it <a href="http://www.adobe.com/products/flashplayer/" target="_blank"><u>here</u></a> for free.
</div>
<script type="text/javascript">
var myChart13 = new FusionCharts("Charts/Bulb.swf", "myChartId13", "100", "100", "0", "0");
myChart13.setDataURL("Data/bulb.xml");
myChart13.render("chartdiv13");
</script>
</td>
</tr>
</table>
</body>
</html>
<chart bgColor="C4D283, FFFFFF" decimalPrecision="0" numberSuffix="%25" lowerLimit="0" upperLimit="100" dataStreamURL="DataProviders/Bulb.asp" refreshInterval="4">
<colorRange>
<color minValue="0" maxValue="50" name="Normal" code="8BBA00"/>
<color minValue="50" maxValue="75" name="Warning" code="F6BD0F"/>
<color minValue="75" maxValue="100" name="Danger" code="FF654F"/>
</colorRange>
<value>52</value>
</chart>
Content of Bulb.asp:
&value=99
When I load the page the bulb stays at 52%.
Can you tell me if I'm doing anything wrong?
I have checked from the webserver and all the file permissions are correct, I have even tried using the HTML & XML from your site and this does not apear to work either.
When I run this on a page with other real time charts, all the other charts are updating at the correct intervals.
Regards,
Sam.