TAChart: Avoid exception in IDE if Extent.Min >= Extent.Max

git-svn-id: trunk@55129 -
This commit is contained in:
wp 2017-05-31 10:18:57 +00:00
parent 33c52c4fb6
commit c789291889

View File

@ -1103,7 +1103,9 @@ var
s: TBasicChartSeries;
a: TChartAxis;
begin
Extent.CheckBoundsOrder;
//Extent.CheckBoundsOrder;
// wp: avoid exception in IDE if min > max, but silently bring min/max
// into correct order
for a in AxisList do
if a.Transformations <> nil then