I need to place several labels in a arrow with vertical align to middle and horizontal align to right of the parent.
What I did (1st screenshot) is not exactrly what I expected.
object Form1: TForm1
Left = 272
Height = 129
Top = 250
Width = 364
Caption = 'Form1'
ChildSizing.LeftRightSpacing = 15
ChildSizing.TopBottomSpacing = 15
ChildSizing.HorizontalSpacing = 15
ChildSizing.VerticalSpacing = 15
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 999
ClientHeight = 129
ClientWidth = 364
LCLVersion = '2.2.4.0'
object Label1: TLabel
Left = 15
Height = 25
Top = 15
Width = 35
Alignment = taRightJustify
Caption = 'One'
Color = clFuchsia
Font.CharSet = RUSSIAN_CHARSET
Font.Height = -19
Font.Pitch = fpVariable
Font.Quality = fqDraft
Layout = tlCenter
ParentColor = False
ParentFont = False
Transparent = False
end
object Label2: TLabel
Left = 65
Height = 25
Top = 15
Width = 35
Alignment = taRightJustify
Caption = 'Two'
Color = clRed
Font.CharSet = RUSSIAN_CHARSET
Font.Height = -19
Font.Pitch = fpVariable
Font.Quality = fqDraft
Layout = tlCenter
ParentColor = False
ParentFont = False
Transparent = False
end
object Label3: TLabel
Left = 115
Height = 25
Top = 15
Width = 48
Alignment = taRightJustify
Caption = 'Three'
Color = clLime
Font.CharSet = RUSSIAN_CHARSET
Font.Height = -19
Font.Pitch = fpVariable
Font.Quality = fqDraft
Layout = tlCenter
ParentColor = False
ParentFont = False
Transparent = False
end
object Label4: TLabel
Left = 178
Height = 25
Top = 15
Width = 38
Alignment = taRightJustify
Caption = 'Four'
Color = clAqua
Font.CharSet = RUSSIAN_CHARSET
Font.Height = -19
Font.Pitch = fpVariable
Font.Quality = fqDraft
Layout = tlCenter
ParentColor = False
ParentFont = False
Transparent = False
end
end
How to place labels as on the 2nd screenshot?