1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
object SimpleChartPenFrame: TSimpleChartPenFrame
Left = 0
Height = 62
Top = 0
Width = 120
ClientHeight = 62
ClientWidth = 120
OnResize = FrameResize
TabOrder = 0
DesignLeft = 620
DesignTop = 210
object cbVisible: TCheckBox
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = cbPenColor
AnchorSideTop.Side = asrCenter
Left = 0
Height = 19
Top = 3
Width = 54
BorderSpacing.Top = 8
Caption = 'Visible'
OnChange = cbVisibleChange
TabOrder = 0
end
object cbPenColor: TColorButton
AnchorSideLeft.Control = cbVisible
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 62
Height = 25
Top = 0
Width = 30
BorderSpacing.Left = 8
BorderSpacing.Bottom = 6
BorderWidth = 2
ButtonColorSize = 16
ButtonColor = clBlack
Enabled = False
Margin = 2
OnColorChanged = cbPenColorColorChanged
end
object cbPenWidth: TChartComboBox
AnchorSideLeft.Control = lblPenWidth
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = cbPenColor
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 40
Height = 22
Top = 33
Width = 80
Mode = ccmPenWidth
Options = [ccoPatternBrush, ccoPatternPen]
PenPattern = '1|1'
PointerStyle = psNone
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 8
BorderSpacing.Top = 8
Constraints.MinWidth = 80
Enabled = False
ItemHeight = 16
ItemIndex = 0
TabOrder = 1
OnChange = cbPenWidthChange
end
object lblPenWidth: TLabel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = cbPenWidth
AnchorSideTop.Side = asrCenter
Left = 0
Height = 15
Top = 37
Width = 32
Caption = 'Width'
Enabled = False
end
end
|