mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 13:29:37 +02:00
TAChart: Copy HorizSize and VertSize in TSeriesPointer.Assign
git-svn-id: trunk@39703 -
This commit is contained in:
parent
4052e0366d
commit
e5249dd553
@ -71,6 +71,9 @@ type
|
|||||||
|
|
||||||
TChartUnits = (cuPercent, cuAxis, cuGraph, cuPixel);
|
TChartUnits = (cuPercent, cuAxis, cuGraph, cuPixel);
|
||||||
|
|
||||||
|
TOverrideColor = (ocBrush, ocPen);
|
||||||
|
TOverrideColors = set of TOverrideColor;
|
||||||
|
|
||||||
TSeriesMarksStyle = (
|
TSeriesMarksStyle = (
|
||||||
smsCustom, { user-defined }
|
smsCustom, { user-defined }
|
||||||
smsNone, { no labels }
|
smsNone, { no labels }
|
||||||
|
@ -311,8 +311,10 @@ begin
|
|||||||
if Source is TSeriesPointer then
|
if Source is TSeriesPointer then
|
||||||
with TSeriesPointer(Source) do begin
|
with TSeriesPointer(Source) do begin
|
||||||
Self.FBrush.Assign(Brush);
|
Self.FBrush.Assign(Brush);
|
||||||
|
Self.FHorizSize := HorizSize;
|
||||||
Self.FPen.Assign(Pen);
|
Self.FPen.Assign(Pen);
|
||||||
Self.FStyle := Style;
|
Self.FStyle := Style;
|
||||||
|
Self.FVertSize := VertSize;
|
||||||
end;
|
end;
|
||||||
inherited Assign(Source);
|
inherited Assign(Source);
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user