TAChart: Invalidate source caches in TCustomChartSource.EndUpdate

git-svn-id: trunk@32666 -
This commit is contained in:
ask 2011-10-04 03:02:47 +00:00
parent 5b6ee38c9e
commit 666a04486b

View File

@ -547,6 +547,9 @@ end;
procedure TCustomChartSource.EndUpdate;
begin
Dec(FUpdateCount);
if FUpdateCount > 0 then exit;
// Values can be set directly between BeginUpdate and EndUpdate.
InvalidateCaches;
Notify;
end;