How would I go about having a cylinder chart without real time updates? I have no references to RealTimeData.asp, or any flags to enable real-time...
I have the following:
<script type="text/javascript">
var myChart = new FusionCharts("./images/fusioncharts/gadgets/Charts/Cylinder.swf", "myChartId", "240", "240", "0", "0");
myChart.setXMLUrl("./xml/xml.reporting.php?pct_value=20");
myChart.render("chartdiv");
</script>
And in the XML content:
<chart plotGradientColor='FFFFFF' plotFillRatio='65' showValues='1' chartLeftMargin='10' chartRightMargin='0' plotSpacePercent='40'
placeValuesInside='1' decimals='0' formatNumberScale='0' showBorder='0' showYAxisValues='0' bgColor='FFFFFF'
showPlotBorder='0' baseFontColor='202020' canvasBorderColor='FFFFFF' numberSuffix='%' toolTipBgColor='FDFDA8'>
But I'm getting 404 errors every second for RealTimeData.asp.
[Fri Mar 09 13:20:58 2012] [error] [client 10.98.20.173] File does not exist: /var/www/html/vp_dev/main/RealTimeData.asp, referer: https://vpdev.nam.nsroot.net/main/images/fusioncharts/gadgets/Charts/Cylinder.swf
Any suggestions? I just want a static graph without the errors.