TAChart: Fix minor marks after the last mark provided by the list source

git-svn-id: trunk@31911 -
This commit is contained in:
ask 2011-08-08 09:29:40 +00:00
parent d7a3cef84d
commit cdbd6d7fc4

View File

@ -617,8 +617,9 @@ begin
Push(v, i);
li := i;
end;
if not InRange(v, AParams.FMin, AParams.FMax) then
Push(v, li);
if li < Count - 1 then
with Item[li + 1]^ do
Push(IfThen(AParams.FUseY, Y, X), li + 1);
SetLength(AValues, cnt);
end;