Mr. War

Members
  • Content count

    5
  • Joined

  • Last visited

Everything posted by Mr. War

  1. Hi everyone, I'm using the dataStamp field in my XML data file because I need it to fetch the last record from the database. However it doesn't seem to work... If I add it, the chart doesn't refresh, if I remove it the chart starts refreshing automatically =/ What can be the problem? The XML file I'm using is like this: <chart caption='bla' subCaption='bla' dataStreamURL='DataProvider.asp' refreshInterval='1' dataStamp='16:00:00' setAdaptiveYMin='1' xAxisName='Hour' yAxisName='bla' showRealTimeValue='1' " labelDisplay='Rotate' slantLabels='1' numDisplaySets='100'> <categories></categories> <dataset seriesName='bla' showValues='0' color='ff0000' anchorBorderColor='ff0000'> </dataset> </chart> Please, I need help... Regards, Marco
  2. Does Datastamp Field Work?

    UPDATE: Now the first refresh runs ok... but when I update the dataStamp in the response the refresh stops! My output is: Response.Write("&label=" + label + "&value=" + value + "&dataStamp=" + lastData.AddSeconds(1).ToString("yyyyMMddHHmmss")); Is the dataStamp field working? Regards, Marco
  3. Hi, I have the same error. The first request with dataStamp runs ok... but when I update the dataStamp in the response the chart stops refreshing... My output is: Response.Write("&label=" + label + "&value=" + value + "&dataStamp=" + lastData.AddSeconds(1).ToString("yyyyMMddHHmmss")); Is the format of the string wrong? How should it be? Regards, Marco
  4. Simulate Real-Time

    Hi everyone, I've been using this excellent library, however I'm struggling with something: is it possible to simulate real-time with RealTimeLine.swf? What I mean is: I have data that is stored in a database in real-time, having a datetime field in the database table. Now I want to reproduce the stored data in the chart but like if it's running in real-time... Is this possible? Btw... I'm using C# with ASP.NET Regards, Marco
  5. Simulate Real-Time

    Hi, I already did that. But how can I simulate the animation of the chart as real-time? If I put the refreshInterval field... nothing happens If I create the XML dynamically the data appears instantaneally on the chart... I want to add dinamically each point on the chart according to the datetime field. Regards, Marco