mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-16 11:39:23 +02:00
TAChart: Fix incorrect scaling of TScaledCanvasDrawer
git-svn-id: branches/fixes_2_0@60280 -
This commit is contained in:
parent
239b73fdac
commit
4b5c1dcce3
@ -1788,6 +1788,7 @@ var
|
||||
dir: TLabelDirection;
|
||||
m: array [TLabelDirection] of Integer absolute AMargins;
|
||||
gp: TDoublePoint;
|
||||
scMarksDistance: Integer;
|
||||
begin
|
||||
if not Marks.IsMarkLabelsVisible or not Marks.AutoMargins then exit;
|
||||
if Count = 0 then exit;
|
||||
@ -1805,6 +1806,7 @@ begin
|
||||
Count-1}
|
||||
FindExtentInterval(ParentChart.CurrentExtent, Source.IsSorted);
|
||||
|
||||
scMarksDistance := ADrawer.Scale(Marks.Distance);
|
||||
for i := FLoBound to FUpBound do begin
|
||||
gp := GetGraphPoint(i);
|
||||
if not ParentChart.IsPointInViewPort(gp) then continue;
|
||||
@ -1817,7 +1819,7 @@ begin
|
||||
if Marks.DistanceToCenter then
|
||||
dist := dist div 2;
|
||||
|
||||
m[dir] := Max(m[dir], dist + Marks.Distance);
|
||||
m[dir] := Max(m[dir], dist + scMarksDistance);
|
||||
end;
|
||||
end;
|
||||
|
||||
|
@ -599,7 +599,6 @@ begin
|
||||
(AMargin.Top <> AChartMargins.Top) or (AMargin.Bottom <> AChartMargins.Bottom),
|
||||
true, @FCurrentExtent.a.Y, @FCurrentExtent.b.Y);
|
||||
|
||||
|
||||
FScale.X := rX.CalcScale(1);
|
||||
FScale.Y := rY.CalcScale(-1);
|
||||
if Proportional then begin
|
||||
@ -1251,7 +1250,7 @@ begin
|
||||
if s.Active then
|
||||
s.UpdateMargins(ADrawer, Result);
|
||||
for i := Low(a) to High(a) do
|
||||
a[i] := ADrawer.Scale(a[i] + TRectArray(Margins.Data)[i]);
|
||||
a[i] := a[i] + ADrawer.Scale(TRectArray(Margins.Data)[i]);
|
||||
end;
|
||||
|
||||
function TChart.GetRenderingParams: TChartRenderingParams;
|
||||
|
Loading…
Reference in New Issue
Block a user