mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 11:18:10 +02:00
TAChart: Set length of FYRange and FYRangeValid for all chart source types
This commit is contained in:
parent
a4553697f4
commit
3e1aa29c2b
@ -94,6 +94,8 @@ begin
|
||||
if FOrigin <> nil then begin
|
||||
FXCount := Origin.XCount;
|
||||
FYCount := Origin.YCount;
|
||||
SetLength(FYRange, FYCount);
|
||||
SetLength(FYRangeValid, FYCount);
|
||||
end else begin
|
||||
FXCount := MaxInt; // Allow source to be used by any series while Origin = nil
|
||||
FYCount := MaxInt;
|
||||
|
@ -1722,8 +1722,11 @@ begin
|
||||
for i := 0 to Count - 1 do
|
||||
UpdateMinMax(Item[i]^.YList[yIdx], AMin, AMax);
|
||||
end;
|
||||
if Length(FYRange) < FYCount then SetLength(FYRange, FYCount);
|
||||
if Length(FYRangeValid) < FYCount then SetLength(FYRangeValid, FYCount);
|
||||
FYRange[AYIndex].FStart := AMin;
|
||||
FYRange[AYIndex].FEnd := AMax;
|
||||
FYRangeValid[AYIndex] := true;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
@ -338,6 +338,8 @@ begin
|
||||
FFieldYList.CommaText := FFieldY;
|
||||
FYCount := FFieldYList.Count;
|
||||
SetLength(FCurItem.YList, Max(FYCount - 1, 0));
|
||||
SetLength(FYRange, FYCount);
|
||||
SetLength(FYRangeValid, FYCount);
|
||||
Reset;
|
||||
end;
|
||||
|
||||
|
@ -979,7 +979,11 @@ begin
|
||||
if FXCount < FXCountMin then
|
||||
FXCount := FXCountMin;
|
||||
if FYCount < FYCountMin then
|
||||
SetYCount(FYCountMin);
|
||||
begin
|
||||
FYCount := FYCountMin;
|
||||
SetLength(FYRange, FYCount);
|
||||
SetLength(FYRangeValid, FYCount);
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TBuiltinListChartSource.CopyFrom(ASource: TCustomChartSource);
|
||||
@ -1042,6 +1046,8 @@ begin
|
||||
if FOrigin <> nil then begin
|
||||
FXCount := Origin.XCount;
|
||||
FYCount := Origin.YCount;
|
||||
SetLength(FYRange, FYCount);
|
||||
SetLength(FYRangeValid, FYCount);
|
||||
ResetTransformation(Origin.Count);
|
||||
if IsSorted and (not HasSameSorting(Origin)) then SortNoNotify;
|
||||
end else begin
|
||||
@ -1502,6 +1508,8 @@ begin
|
||||
if FYCount = AValue then exit;
|
||||
inherited SetYCount(AValue);
|
||||
SetLength(FItem.YList, Max(YCount - 1, 0));
|
||||
SetLength(FYRange, FYCount);
|
||||
SetLength(FYRangeValid, FYCount);
|
||||
Reset;
|
||||
end;
|
||||
|
||||
@ -1895,8 +1903,9 @@ begin
|
||||
end;
|
||||
end;
|
||||
FYCount := Length(FYOrder);
|
||||
|
||||
SetLength(FItem.YList, Max(High(FYOrder), 0));
|
||||
SetLength(FYRange, FYCount);
|
||||
SetLength(FYRangeValid, FYCount);
|
||||
Changed(nil);
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user