mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 22:40:15 +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>
|
</CodeGeneration>
|
||||||
<Linking>
|
<Linking>
|
||||||
<Debugging>
|
<Debugging>
|
||||||
|
<DebugInfoType Value="dsDwarf2Set"/>
|
||||||
<TrashVariables Value="True"/>
|
<TrashVariables Value="True"/>
|
||||||
</Debugging>
|
</Debugging>
|
||||||
<Options>
|
<Options>
|
||||||
|
@ -124,6 +124,8 @@ begin
|
|||||||
begin
|
begin
|
||||||
ygmin := Infinity;
|
ygmin := Infinity;
|
||||||
ygmax := -Infinity;
|
ygmax := -Infinity;
|
||||||
|
ymin := Infinity;
|
||||||
|
ymax := -Infinity;
|
||||||
for i := 0 to FChart.SeriesCount-1 do
|
for i := 0 to FChart.SeriesCount-1 do
|
||||||
if FChart.Series[i] is TChartSeries then
|
if FChart.Series[i] is TChartSeries then
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user