mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 12:01:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| object Form1: TForm1
 | |
|   Left = 340
 | |
|   Height = 300
 | |
|   Top = 154
 | |
|   Width = 400
 | |
|   Caption = 'Form1'
 | |
|   ClientHeight = 300
 | |
|   ClientWidth = 400
 | |
|   OnCreate = FormCreate
 | |
|   OnDestroy = FormDestroy
 | |
|   LCLVersion = '2.1.0.0'
 | |
|   object Chart1: TChart
 | |
|     Left = 0
 | |
|     Height = 300
 | |
|     Top = 0
 | |
|     Width = 400
 | |
|     AxisList = <    
 | |
|       item
 | |
|         Grid.Color = clSkyBlue
 | |
|         Grid.Visible = False
 | |
|         Marks.Format = '%.0n'
 | |
|         Marks.LabelBrush.Style = bsClear
 | |
|         Marks.Style = smsCustom
 | |
|         Minors = <>
 | |
|         Title.LabelFont.Height = -16
 | |
|         Title.LabelFont.Orientation = 900
 | |
|         Title.LabelFont.Style = [fsBold]
 | |
|         Title.Visible = True
 | |
|         Title.Caption = 'Downloads per year'
 | |
|         Title.LabelBrush.Style = bsClear
 | |
|       end    
 | |
|       item
 | |
|         Grid.Visible = False
 | |
|         Alignment = calBottom
 | |
|         Marks.LabelBrush.Style = bsClear
 | |
|         Minors = <>
 | |
|         Title.LabelFont.Height = -16
 | |
|         Title.LabelFont.Style = [fsBold]
 | |
|         Title.Visible = True
 | |
|         Title.Caption = 'Year'
 | |
|         Title.LabelBrush.Style = bsClear
 | |
|       end>
 | |
|     Foot.Brush.Color = clBtnFace
 | |
|     Foot.Font.Color = clBlue
 | |
|     Title.Brush.Color = clBtnFace
 | |
|     Title.Brush.Style = bsClear
 | |
|     Title.Font.Color = clNavy
 | |
|     Title.Font.Height = -17
 | |
|     Title.Font.Style = [fsBold]
 | |
|     Title.Text.Strings = (
 | |
|       'Lazarus Downloads'
 | |
|     )
 | |
|     Title.Visible = True
 | |
|     OnBeforeCustomDrawBackground = Chart1BeforeCustomDrawBackground
 | |
|     OnBeforeCustomDrawBackWall = Chart1BeforeCustomDrawBackWall
 | |
|     Align = alClient
 | |
|     object Chart1BarSeries1: TBarSeries
 | |
|       Shadow.Color = clNavy
 | |
|       Shadow.OffsetX = 4
 | |
|       BarBrush.Color = clSkyBlue
 | |
|       Source = ListChartSource1
 | |
|     end
 | |
|   end
 | |
|   object ListChartSource1: TListChartSource
 | |
|     DataPoints.Strings = (
 | |
|       '2005|53299|?|'
 | |
|       '2006|119613|?|'
 | |
|       '2007|158060|?|'
 | |
|       '2008|218915|?|'
 | |
|       '2009|190567|?|'
 | |
|       '2010|230108|?|'
 | |
|       '2011|267858|?|'
 | |
|       '2012|298335|?|'
 | |
|       '2013|280586|?|'
 | |
|     )
 | |
|     left = 120
 | |
|     top = 56
 | |
|   end
 | |
| end
 | 
