mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-01 21:40:25 +02:00
Merge branch 'Free_Coder-main-patch-30447' into 'main'
TAMultiseries.pas fix for #39615 TBoxAndWhiskerSeries does not draw box if box... See merge request freepascal.org/lazarus/lazarus!67
This commit is contained in:
commit
7a1301e7b0
@ -981,7 +981,10 @@ procedure TBoxAndWhiskerSeries.Draw(ADrawer: IChartDrawer);
|
|||||||
r.TopLeft := MaybeRotate(AX1, AY1);
|
r.TopLeft := MaybeRotate(AX1, AY1);
|
||||||
r.BottomRight := MaybeRotate(AX2, AY2);
|
r.BottomRight := MaybeRotate(AX2, AY2);
|
||||||
end;
|
end;
|
||||||
ADrawer.Rectangle(r);
|
if (r.Left = r.Right) or (r.Top = r.Bottom) then
|
||||||
|
ADrawer.Line(r.TopLeft, r.BottomRight)
|
||||||
|
else
|
||||||
|
ADrawer.Rectangle(r);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
var
|
var
|
||||||
|
Loading…
Reference in New Issue
Block a user