I have an application that logs data and displays it continuously in a TeeChart using a fastLine series with time as the x-axis using...
Chart1.Axes.Bottom.DateTimeFormat:='hh:mm:ss';
Data is added at approx one point per second but I wish to limit the number of points displayed to the last MaxPoints added (MaxPoints is an integer variable that can be updated by user input at any time). After there are MaxPoints displayed the data should scroll across the scrteen as it is added, as in a stripchart.
I tried the following, where TheTime is Frac(Now)...
procedure TGraphForm.AddPoints(TheTime,TheData : real);
begin
Chart1.Series[0].AddXY(TheTime,TheData);
while (Chart1.Series[0].Count > MaxPoints) do
Chart1.Series[0].Delete(0);
end;
This works perfectly until midnight, where the display freezes. I understand that the problem is that the data is sorted as it is added so Series[0].Delete(0) deletes the data with the smallest x-value, (i.e. the newest piece of data added when midnight passes, not the oldest piece of data added to the series.
I tried rescueing things by adding an external
var
DeleteIndex : integer
and changing the procedure to...
procedure TGraphForm.AddPoints(TheTime,TheData : real);
begin
if TheTime >= Chart1.Series[0].MaxXValue then
DeleteIndex := 0
else
inc(DeleteIndex);
Chart1.Series[0].AddXY(TheTime,TheData);
while (Chart1.Series[0].Count > MaxPoints) do
Chart1.Series[0].Delete(DeleteIndex);
end;
end;
but this is a horrible 'kludge' as then when I pass midnight a) the x-axis expands to show the full 24 hours and b) there is a line drawn between the newest point (near the far left of the graph) and the oldest remaining point of those added before midnight (near the far right of the graph).
The alternate...
procedure TGraphForm.AddPoints(TheTime,TheData : real);
begin
if TheTime < Chart1.Series[0].MaxXValue then
Chart1.Series[0].Clear;
Chart1.Series[0].AddXY(TheTime,TheData);
while (Chart1.Series[0].Count > MaxPoints) do
Chart1.Series[0].Delete(0);
end;
works, but the pre-midnight points are 'lost' at midnight as the graph is slowly repopulated after the clear, which is also less than desirable.
The simplest 'solution' would be if the axis minimum and maximum could cross the midnight boundary, but it seems impossible to set the axis maximum to less than the minimum.
I would be keen to hear of any alternate solutions anyone else might have come across for dealing with the 'midnight-crossing' problem.