TAChart: Fix a typo leading to excessive bounds culling in unordered series.

* Reported by Andrea Mauri

git-svn-id: trunk@26041 -
This commit is contained in:
ask 2010-06-11 13:10:56 +00:00
parent 6cf27772ce
commit 4dbdf21241

View File

@ -348,7 +348,7 @@ begin
while (ALB < Count) and (Item[ALB]^.X < AXMin) do
Inc(ALB);
AUB := Count - 1;
while (AUB > 0) and (Item[AUB]^.X < AXMax) do
while (AUB > 0) and (Item[AUB]^.X > AXMax) do
Dec(AUB);
end;
end;