mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 20:19:27 +02:00
TAChart: Fix initialization error in TChartLiveView when ExtentY is lveAuto.
git-svn-id: trunk@65425 -
This commit is contained in:
parent
8ea00ae159
commit
2bf2902c91
@ -198,6 +198,7 @@
|
||||
</CodeGeneration>
|
||||
<Linking>
|
||||
<Debugging>
|
||||
<DebugInfoType Value="dsDwarf2Set"/>
|
||||
<TrashVariables Value="True"/>
|
||||
</Debugging>
|
||||
<Options>
|
||||
|
@ -124,6 +124,8 @@ begin
|
||||
begin
|
||||
ygmin := Infinity;
|
||||
ygmax := -Infinity;
|
||||
ymin := Infinity;
|
||||
ymax := -Infinity;
|
||||
for i := 0 to FChart.SeriesCount-1 do
|
||||
if FChart.Series[i] is TChartSeries then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user