mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 03:35:57 +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);
|
||||
|
||||
TOverrideColor = (ocBrush, ocPen);
|
||||
TOverrideColors = set of TOverrideColor;
|
||||
|
||||
TSeriesMarksStyle = (
|
||||
smsCustom, { user-defined }
|
||||
smsNone, { no labels }
|
||||
|
@ -311,8 +311,10 @@ begin
|
||||
if Source is TSeriesPointer then
|
||||
with TSeriesPointer(Source) do begin
|
||||
Self.FBrush.Assign(Brush);
|
||||
Self.FHorizSize := HorizSize;
|
||||
Self.FPen.Assign(Pen);
|
||||
Self.FStyle := Style;
|
||||
Self.FVertSize := VertSize;
|
||||
end;
|
||||
inherited Assign(Source);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user