Alright. So, .... I have a web site which displays some CPU monitors, etc. The web page itself is generated dynamically through javascript and that is also where the XML files for the graphs get pushed into the graphs. The problem is that the javascript file has no idea what the "initial"/current value of the cpus is. I have set up a streaming data URL that has the CPU values on it, but I don't really want to hit those more than once a minute. So I set my data url and set my time to 60 seconds. The problem is that since I have no data and the update time is 60 seconds it takes 60 seconds for the graph to have any data on it. What I want it to do is to get the graph to actually get its first datapoint from the stream URL. Is this possible?