The reason for this are the source code changes in lines 12232 and 12245 of TeEngine.pas marked with TV52014436 (method TCustomAxisPanel.InternalDraw, CalcSeriesAXisRect):
Code: Select all
// TV52014436
if (Axis.MinimumOffset=0) and Axis.AutomaticMinimum then Axis.MinimumOffset:=a;
if (Axis.MaximumOffset=0) and Axis.AutomaticMaximum then Axis.MaximumOffset:=b;
Code: Select all
// TV52014436
if (Axis.MinimumOffset=0) and Axis.AutomaticMinimum then Axis.MinimumOffset:=b;
if (Axis.MaximumOffset=0) and Axis.AutomaticMaximum then Axis.MaximumOffset:=a;
Code: Select all
// if Axis.AutomaticMinimum then Left :=Math.Max(Left,a);
// if Axis.AutomaticMaximum then Right:=Math.Max(Right,b);
Code: Select all
// if Axis.AutomaticMaximum then Top :=Math.Max(Top,a);
// if Axis.AutomaticMinimum then Bottom:=Math.Max(Bottom,b);