/components/tachart/demo/3d/main.lfm

http://github.com/graemeg/lazarus · Unknown · 126 lines · 126 code · 0 blank · 0 comment · 0 complexity · 5d5dc1159097800330b3bc7f6c832aff MD5 · raw file

  1. object Form1: TForm1
  2. Left = 318
  3. Height = 347
  4. Top = 150
  5. Width = 560
  6. Caption = 'Form1'
  7. ClientHeight = 347
  8. ClientWidth = 560
  9. OnShow = FormShow
  10. Position = poScreenCenter
  11. LCLVersion = '0.9.31'
  12. object Chart1: TChart
  13. Left = 0
  14. Height = 297
  15. Top = 0
  16. Width = 560
  17. AxisList = <
  18. item
  19. Grid.Color = clGray
  20. AxisPen.Visible = True
  21. Minors = <>
  22. Title.LabelFont.Orientation = 900
  23. end
  24. item
  25. Grid.Color = clGray
  26. Alignment = calBottom
  27. AxisPen.Visible = True
  28. Minors = <>
  29. end>
  30. BackColor = clSkyBlue
  31. Depth = 50
  32. Foot.Brush.Color = clBtnFace
  33. Foot.Font.Color = clBlue
  34. Margins.Bottom = 0
  35. Title.Brush.Color = clBtnFace
  36. Title.Font.Color = clBlue
  37. Title.Text.Strings = (
  38. 'TAChart'
  39. )
  40. Align = alClient
  41. Color = clWhite
  42. ParentColor = False
  43. object Chart1BarSeries1: TBarSeries
  44. ZPosition = 10
  45. BarBrush.Color = clTeal
  46. BarWidthPercent = 50
  47. Depth = 10
  48. Source = RandomChartSource1
  49. end
  50. object Chart1BarSeries2: TBarSeries
  51. ZPosition = 30
  52. BarBrush.Color = clMaroon
  53. BarWidthPercent = 50
  54. Depth = 10
  55. Source = RandomChartSource2
  56. end
  57. object Chart1LineSeries1: TLineSeries
  58. ZPosition = 50
  59. Depth = 10
  60. LinePen.Color = clBlue
  61. Source = RandomChartSource1
  62. end
  63. end
  64. object pnControls: TPanel
  65. Left = 0
  66. Height = 50
  67. Top = 297
  68. Width = 560
  69. Align = alBottom
  70. ClientHeight = 50
  71. ClientWidth = 560
  72. TabOrder = 1
  73. object seDepth: TSpinEdit
  74. Left = 52
  75. Height = 21
  76. Top = 7
  77. Width = 74
  78. OnChange = seDepthChange
  79. TabOrder = 0
  80. end
  81. object lblDepth: TLabel
  82. Left = 8
  83. Height = 14
  84. Top = 11
  85. Width = 34
  86. Caption = 'Depth:'
  87. ParentColor = False
  88. end
  89. object seAxisZ: TSpinEdit
  90. Left = 196
  91. Height = 21
  92. Top = 7
  93. Width = 74
  94. OnChange = seAxisZChange
  95. TabOrder = 1
  96. end
  97. object lblAxisZ: TLabel
  98. Left = 152
  99. Height = 14
  100. Top = 11
  101. Width = 34
  102. Caption = 'Axis Z:'
  103. ParentColor = False
  104. end
  105. end
  106. object RandomChartSource1: TRandomChartSource
  107. PointsNumber = 7
  108. RandSeed = 545516281
  109. XMax = 7
  110. XMin = 1
  111. YMax = 12
  112. YMin = 4
  113. left = 120
  114. top = 52
  115. end
  116. object RandomChartSource2: TRandomChartSource
  117. PointsNumber = 7
  118. RandSeed = 87568756
  119. XMax = 7
  120. XMin = 1
  121. YMax = 12
  122. YMin = 1
  123. left = 120
  124. top = 100
  125. end
  126. end