TAChart: Fix designtime crash when Chart is unlinked from ChartLiveView; add missing Notification method.

This commit is contained in:
wp_xyz 2022-05-08 16:02:04 +02:00
parent 61bd692ef5
commit 1a6aea0daa

View File

@ -53,6 +53,7 @@ type
procedure SetExtentY(const AValue: TChartLiveViewExtentY);
procedure SetViewportSize(const AValue: Double);
protected
procedure Notification(AComponent: TComponent; AOperation: TOperation); override;
procedure UpdateViewport; virtual;
public
constructor Create(AOwner: TComponent); override;
@ -98,6 +99,16 @@ begin
UpdateViewport;
end;
procedure TChartLiveView.Notification(AComponent: TComponent; AOperation: TOperation);
begin
if (AOperation = opRemove) and (AComponent = FChart) then
begin
SetActive(false);
FChart := nil;
end;
inherited Notification(AComponent, AOperation);
end;
procedure TChartLiveView.RestoreAxisRange(Axis: TChartAxis);
begin
if Assigned(Axis) then
@ -195,6 +206,8 @@ procedure TChartLiveView.StoreAxisRanges;
var
i: Integer;
begin
if FChart = nil then
exit;
SetLength(FAxisRanges, FChart.AxisList.Count);
for i := 0 to FChart.AxisList.Count-1 do
StoreAxisRange(FChart.AxisList[i]);