using System; using System.Drawing; using System.Collections; using System.Windows.Forms; using Steema.TeeChart; using Steema.TeeChart.Styles; //css_reference teechart.lite.dll; namespace WindowsApplication8 { public class Form1 : System.Windows.Forms.Form { private TChart tChart1; private Bar bar1; public Form1() { tChart1 = new TChart(); bar1 = new Bar(); tChart1.Header.Lines = new string[] {"TeeChart"}; tChart1.Location = new System.Drawing.Point(56, 64); tChart1.Series.Add(bar1); tChart1.TabIndex = 0; bar1.Brush.Color = System.Drawing.Color.Red; AutoScaleBaseSize = new System.Drawing.Size(5, 13); ClientSize = new System.Drawing.Size(584, 382); Controls.Add(this.tChart1); Text = "Form1"; bar1.Add(3,"Pears",Color.Red); bar1.Add(4,"Apples",Color.Blue); bar1.Add(2,"Oranges",Color.Green); } public static void Main() { Application.Run(new Form1()); } } }