TAChart: Add notification of chart by source when it is no longer sorted.

git-svn-id: trunk@61000 -
This commit is contained in:
wp 2019-04-16 21:43:51 +00:00
parent abdb6abcaf
commit 97dbba89f5

View File

@ -593,7 +593,7 @@ procedure TCustomSortedChartSource.SetSorted(AValue: Boolean);
begin
if FSorted = AValue then exit;
FSorted := AValue;
if Sorted then Sort;
if Sorted then Sort else Notify;
end;
procedure TCustomSortedChartSource.SetSortDir(AValue: TChartSortDir);