using Imsl.Chart2D; public class Intro2 : FrameChart { public Intro2() { Chart chart = this.Chart; AxisXY axis = new AxisXY(chart); double[] y = new double[] {4, 2, 3, 9}; new Data(axis, y); chart.Background.FillColor = System.Drawing.Color.Lime; axis.AxisX.MajorTick.LineWidth = 2.0; } public static void Main(string[] argv) { System.Windows.Forms.Application.Run(new Intro2()); } }